Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* Generated SBE (Simple Binary Encoding) message codec. */
package uk.co.real_logic.artio.messages;
import org.agrona.MutableDirectBuffer;
import org.agrona.DirectBuffer;
/**
* releases a session from the library's control to the gateway
*/
@SuppressWarnings("all")
public final class ReleaseSessionEncoder
{
public static final int BLOCK_LENGTH = 46;
public static final int TEMPLATE_ID = 29;
public static final int SCHEMA_ID = 666;
public static final int SCHEMA_VERSION = 25;
public static final String SEMANTIC_VERSION = "0.2";
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private final ReleaseSessionEncoder parentMessage = this;
private MutableDirectBuffer buffer;
private int offset;
private int limit;
public int sbeBlockLength()
{
return BLOCK_LENGTH;
}
public int sbeTemplateId()
{
return TEMPLATE_ID;
}
public int sbeSchemaId()
{
return SCHEMA_ID;
}
public int sbeSchemaVersion()
{
return SCHEMA_VERSION;
}
public String sbeSemanticType()
{
return "";
}
public MutableDirectBuffer buffer()
{
return buffer;
}
public int offset()
{
return offset;
}
public ReleaseSessionEncoder wrap(final MutableDirectBuffer buffer, final int offset)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
this.offset = offset;
limit(offset + BLOCK_LENGTH);
return this;
}
public ReleaseSessionEncoder wrapAndApplyHeader(
final MutableDirectBuffer buffer, final int offset, final MessageHeaderEncoder headerEncoder)
{
headerEncoder
.wrap(buffer, offset)
.blockLength(BLOCK_LENGTH)
.templateId(TEMPLATE_ID)
.schemaId(SCHEMA_ID)
.version(SCHEMA_VERSION);
return wrap(buffer, offset + MessageHeaderEncoder.ENCODED_LENGTH);
}
public int encodedLength()
{
return limit - offset;
}
public int limit()
{
return limit;
}
public void limit(final int limit)
{
this.limit = limit;
}
public static int libraryIdId()
{
return 1;
}
public static int libraryIdSinceVersion()
{
return 0;
}
public static int libraryIdEncodingOffset()
{
return 0;
}
public static int libraryIdEncodingLength()
{
return 4;
}
public static String libraryIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int libraryIdNullValue()
{
return -2147483648;
}
public static int libraryIdMinValue()
{
return -2147483647;
}
public static int libraryIdMaxValue()
{
return 2147483647;
}
public ReleaseSessionEncoder libraryId(final int value)
{
buffer.putInt(offset + 0, value, BYTE_ORDER);
return this;
}
public static int sessionIdId()
{
return 2;
}
public static int sessionIdSinceVersion()
{
return 0;
}
public static int sessionIdEncodingOffset()
{
return 4;
}
public static int sessionIdEncodingLength()
{
return 8;
}
public static String sessionIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long sessionIdNullValue()
{
return -9223372036854775808L;
}
public static long sessionIdMinValue()
{
return -9223372036854775807L;
}
public static long sessionIdMaxValue()
{
return 9223372036854775807L;
}
public ReleaseSessionEncoder sessionId(final long value)
{
buffer.putLong(offset + 4, value, BYTE_ORDER);
return this;
}
public static int connectionId()
{
return 3;
}
public static int connectionSinceVersion()
{
return 0;
}
public static int connectionEncodingOffset()
{
return 12;
}
public static int connectionEncodingLength()
{
return 8;
}
public static String connectionMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long connectionNullValue()
{
return -9223372036854775808L;
}
public static long connectionMinValue()
{
return -9223372036854775807L;
}
public static long connectionMaxValue()
{
return 9223372036854775807L;
}
public ReleaseSessionEncoder connection(final long value)
{
buffer.putLong(offset + 12, value, BYTE_ORDER);
return this;
}
public static int correlationIdId()
{
return 4;
}
public static int correlationIdSinceVersion()
{
return 0;
}
public static int correlationIdEncodingOffset()
{
return 20;
}
public static int correlationIdEncodingLength()
{
return 8;
}
public static String correlationIdMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long correlationIdNullValue()
{
return -9223372036854775808L;
}
public static long correlationIdMinValue()
{
return -9223372036854775807L;
}
public static long correlationIdMaxValue()
{
return 9223372036854775807L;
}
public ReleaseSessionEncoder correlationId(final long value)
{
buffer.putLong(offset + 20, value, BYTE_ORDER);
return this;
}
public static int heartbeatIntervalInMsId()
{
return 5;
}
public static int heartbeatIntervalInMsSinceVersion()
{
return 0;
}
public static int heartbeatIntervalInMsEncodingOffset()
{
return 28;
}
public static int heartbeatIntervalInMsEncodingLength()
{
return 8;
}
public static String heartbeatIntervalInMsMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static long heartbeatIntervalInMsNullValue()
{
return -9223372036854775808L;
}
public static long heartbeatIntervalInMsMinValue()
{
return -9223372036854775807L;
}
public static long heartbeatIntervalInMsMaxValue()
{
return 9223372036854775807L;
}
public ReleaseSessionEncoder heartbeatIntervalInMs(final long value)
{
buffer.putLong(offset + 28, value, BYTE_ORDER);
return this;
}
public static int stateId()
{
return 6;
}
public static int stateSinceVersion()
{
return 0;
}
public static int stateEncodingOffset()
{
return 36;
}
public static int stateEncodingLength()
{
return 1;
}
public static String stateMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public ReleaseSessionEncoder state(final SessionState value)
{
buffer.putByte(offset + 36, (byte)value.value());
return this;
}
public static int lastSentSequenceNumberId()
{
return 7;
}
public static int lastSentSequenceNumberSinceVersion()
{
return 0;
}
public static int lastSentSequenceNumberEncodingOffset()
{
return 37;
}
public static int lastSentSequenceNumberEncodingLength()
{
return 4;
}
public static String lastSentSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int lastSentSequenceNumberNullValue()
{
return -2147483648;
}
public static int lastSentSequenceNumberMinValue()
{
return -2147483647;
}
public static int lastSentSequenceNumberMaxValue()
{
return 2147483647;
}
public ReleaseSessionEncoder lastSentSequenceNumber(final int value)
{
buffer.putInt(offset + 37, value, BYTE_ORDER);
return this;
}
public static int lastReceivedSequenceNumberId()
{
return 8;
}
public static int lastReceivedSequenceNumberSinceVersion()
{
return 0;
}
public static int lastReceivedSequenceNumberEncodingOffset()
{
return 41;
}
public static int lastReceivedSequenceNumberEncodingLength()
{
return 4;
}
public static String lastReceivedSequenceNumberMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int lastReceivedSequenceNumberNullValue()
{
return -2147483648;
}
public static int lastReceivedSequenceNumberMinValue()
{
return -2147483647;
}
public static int lastReceivedSequenceNumberMaxValue()
{
return 2147483647;
}
public ReleaseSessionEncoder lastReceivedSequenceNumber(final int value)
{
buffer.putInt(offset + 41, value, BYTE_ORDER);
return this;
}
public static int awaitingResendId()
{
return 11;
}
public static int awaitingResendSinceVersion()
{
return 0;
}
public static int awaitingResendEncodingOffset()
{
return 45;
}
public static int awaitingResendEncodingLength()
{
return 1;
}
public static String awaitingResendMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public ReleaseSessionEncoder awaitingResend(final AwaitingResend value)
{
buffer.putByte(offset + 45, (byte)value.value());
return this;
}
public static int usernameId()
{
return 9;
}
public static String usernameCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String usernameMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int usernameHeaderLength()
{
return 2;
}
public ReleaseSessionEncoder putUsername(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public ReleaseSessionEncoder putUsername(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public ReleaseSessionEncoder username(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public static int passwordId()
{
return 10;
}
public static String passwordCharacterEncoding()
{
return java.nio.charset.StandardCharsets.UTF_8.name();
}
public static String passwordMetaAttribute(final MetaAttribute metaAttribute)
{
if (MetaAttribute.PRESENCE == metaAttribute)
{
return "required";
}
return "";
}
public static int passwordHeaderLength()
{
return 2;
}
public ReleaseSessionEncoder putPassword(final DirectBuffer src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public ReleaseSessionEncoder putPassword(final byte[] src, final int srcOffset, final int length)
{
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, src, srcOffset, length);
return this;
}
public ReleaseSessionEncoder password(final String value)
{
final byte[] bytes = (null == value || value.isEmpty()) ? org.agrona.collections.ArrayUtil.EMPTY_BYTE_ARRAY : value.getBytes(java.nio.charset.StandardCharsets.UTF_8);
final int length = bytes.length;
if (length > 65534)
{
throw new IllegalStateException("length > maxValue for type: " + length);
}
final int headerLength = 2;
final int limit = parentMessage.limit();
parentMessage.limit(limit + headerLength + length);
buffer.putShort(limit, (short)length, BYTE_ORDER);
buffer.putBytes(limit + headerLength, bytes, 0, length);
return this;
}
public String toString()
{
if (null == buffer)
{
return "";
}
return appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
final ReleaseSessionDecoder decoder = new ReleaseSessionDecoder();
decoder.wrap(buffer, offset, BLOCK_LENGTH, SCHEMA_VERSION);
return decoder.appendTo(builder);
}
}