Interface IQueueable
The common queueable interface, supported by IQueue<T> .
Namespace: FixAntenna.FixEngine.Storage.Queue
Assembly: FixAntenna.Core.dll
Syntax
public interface IQueueable
Methods
FromBytes(Byte[], Int32, Int32)
The FromBytes
method is responsible for reading object from buffer of bytes.
Declaration
void FromBytes(byte[] bytes, int offset, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | bytes | buffer of bytes |
System.Int32 | offset | offset in buffer |
System.Int32 | length | number of bytes to read |
GetBytes(ByteBuffer)
The GetBytes
method is responsible for
write object to buffer of bytes.
Declaration
void GetBytes(ByteBuffer buffer)
Parameters
Type | Name | Description |
---|---|---|
ByteBuffer | buffer | of bytes |
See Also
IQueue<T>