io.seata.core.protocol.ProtocolConstants Maven / Gradle / Ivy
/*
* Copyright 1999-2019 Seata.io Group.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.seata.core.protocol;
import io.seata.config.ConfigurationFactory;
import io.seata.core.serializer.SerializerType;
import io.seata.core.compressor.CompressorType;
import io.seata.core.constants.ConfigurationKeys;
/**
* @author Geng Zhang
* @since 0.7.0
*/
public interface ProtocolConstants {
/**
* Magic code
*/
byte[] MAGIC_CODE_BYTES = {(byte) 0xda, (byte) 0xda};
/**
* Protocol version
*/
byte VERSION = 1;
/**
* Max frame length
*/
int MAX_FRAME_LENGTH = 8 * 1024 * 1024;
/**
* HEAD_LENGTH of protocol v1
*/
int V1_HEAD_LENGTH = 16;
/**
* Message type: Request
*/
byte MSGTYPE_RESQUEST_SYNC = 0;
/**
* Message type: Response
*/
byte MSGTYPE_RESPONSE = 1;
/**
* Message type: Request which no need response
*/
byte MSGTYPE_RESQUEST_ONEWAY = 2;
/**
* Message type: Heartbeat Request
*/
byte MSGTYPE_HEARTBEAT_REQUEST = 3;
/**
* Message type: Heartbeat Response
*/
byte MSGTYPE_HEARTBEAT_RESPONSE = 4;
//byte MSGTYPE_NEGOTIATOR_REQUEST = 5;
//byte MSGTYPE_NEGOTIATOR_RESPONSE = 6;
/**
* Configured codec by user, default is SEATA
*
* @see SerializerType#SEATA
*/
byte CONFIGURED_CODEC = SerializerType.getByName(ConfigurationFactory.getInstance()
.getConfig(ConfigurationKeys.SERIALIZE_FOR_RPC, SerializerType.SEATA.name())).getCode();
/**
* Configured compressor by user, default is NONE
*
* @see CompressorType#NONE
*/
byte CONFIGURED_COMPRESSOR = CompressorType.getByName(ConfigurationFactory.getInstance()
.getConfig(ConfigurationKeys.COMPRESSOR_FOR_RPC, CompressorType.NONE.name())).getCode();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy