Class Framing
TBD
Inherited Members
Namespace: Akka.Streams.Dsl
Assembly: Akka.Streams.dll
Syntax
public static class Framing
Methods
| Improve this Doc View SourceDelimiter(ByteString, Int32, Boolean)
Creates a Flow that handles decoding a stream of unstructured byte chunks into a stream of frames where the incoming chunk stream uses a specific byte-sequence to mark frame boundaries.
The decoded frames will not include the separator sequence.
If there are buffered bytes (an incomplete frame) when the input stream finishes and allowTruncation
is set to
false then this Flow will fail the stream reporting a truncated frame.
Declaration
public static Flow<ByteString, ByteString, NotUsed> Delimiter(ByteString delimiter, int maximumFrameLength, bool allowTruncation = false)
Parameters
Type | Name | Description |
---|---|---|
ByteString | delimiter | The byte sequence to be treated as the end of the frame. |
Int32 | maximumFrameLength | The maximum length of allowed frames while decoding. If the maximum length is exceeded this Flow will fail the stream. |
Boolean | allowTruncation | If false, then when the last frame being decoded contains no valid delimiter this Flow fails the stream instead of returning a truncated frame. |
Returns
Type | Description |
---|---|
Flow<ByteString, ByteString, NotUsed> | TBD |
LengthField(Int32, Int32, Int32, ByteOrder)
Creates a Flow that decodes an incoming stream of unstructured byte chunks into a stream of frames, assuming that incoming frames have a field that encodes their length.
If the input stream finishes before the last frame has been fully decoded, this Flow will fail the stream reporting a truncated frame.
Declaration
public static Flow<ByteString, ByteString, NotUsed> LengthField(int fieldLength, int maximumFramelength, int fieldOffset = 0, ByteOrder byteOrder = ByteOrder.LittleEndian)
Parameters
Type | Name | Description |
---|---|---|
Int32 | fieldLength | The length of the "Count" field in bytes |
Int32 | maximumFramelength | The maximum length of allowed frames while decoding. If the maximum length is exceeded this Flow will fail the stream. This length includes the header (i.e the offset and the length of the size field) |
Int32 | fieldOffset | The offset of the field from the beginning of the frame in bytes |
ByteOrder | byteOrder | The ByteOrder to be used when decoding the field |
Returns
Type | Description |
---|---|
Flow<ByteString, ByteString, NotUsed> | TBD |
Exceptions
Type | Condition |
---|---|
ArgumentException | This exception is thrown when the specified |
LengthField(Int32, Int32, Int32, ByteOrder, Func<IReadOnlyList<Byte>, Int32, Int32>)
Creates a Flow that decodes an incoming stream of unstructured byte chunks into a stream of frames, assuming that incoming frames have a field that encodes their length.
If the input stream finishes before the last frame has been fully decoded, this Flow will fail the stream reporting a truncated frame.
Declaration
public static Flow<ByteString, ByteString, NotUsed> LengthField(int fieldLength, int fieldOffset, int maximumFrameLength, ByteOrder byteOrder, Func<IReadOnlyList<byte>, int, int> computeFrameSize)
Parameters
Type | Name | Description |
---|---|---|
Int32 | fieldLength | The length of the "Count" field in bytes |
Int32 | fieldOffset | The offset of the field from the beginning of the frame in bytes. |
Int32 | maximumFrameLength | The maximum length of allowed frames while decoding. If the maximum length is exceeded this Flow will fail the stream. This length includes the header (i.e the offset and the length of the size field) |
ByteOrder | byteOrder | The ByteOrder to be used when decoding the field. |
Func<IReadOnlyList<Byte>, Int32, Int32> | computeFrameSize | This function can be supplied if frame size is varied or needs to be computed in a special fashion.
For example, frame can have a shape like this: |
Returns
Type | Description |
---|---|
Flow<ByteString, ByteString, NotUsed> | TBD |
Exceptions
Type | Condition |
---|---|
ArgumentException | This exception is thrown when the specified |
SimpleFramingProtocol(Int32)
Returns a BidiFlow that implements a simple framing protocol. This is a convenience wrapper over LengthField(Int32, Int32, Int32, ByteOrder) and simply attaches a length field header of four bytes (using big endian encoding) to outgoing messages, and decodes such messages in the inbound direction. The decoded messages do not contain the header.
This BidiFlow is useful if a simple message framing protocol is needed (for example when TCP is used to send individual messages) but no compatibility with existing protocols is necessary.
The encoded frames have the layout {{{ [4 bytes length field, Big Endian][User Payload] }}} The length field encodes the length of the user payload excluding the header itself.
Declaration
public static BidiFlow<ByteString, ByteString, ByteString, ByteString, NotUsed> SimpleFramingProtocol(int maximumMessageLength)
Parameters
Type | Name | Description |
---|---|---|
Int32 | maximumMessageLength | Maximum length of allowed messages. If sent or received messages exceed the configured limit this BidiFlow will fail the stream. The header attached by this BidiFlow are not included in this limit. |
Returns
Type | Description |
---|---|
BidiFlow<ByteString, ByteString, ByteString, ByteString, NotUsed> | TBD |
SimpleFramingProtocolDecoder(Int32)
Protocol decoder that is used by SimpleFramingProtocol(Int32)
Declaration
public static Flow<ByteString, ByteString, NotUsed> SimpleFramingProtocolDecoder(int maximumMessageLength)
Parameters
Type | Name | Description |
---|---|---|
Int32 | maximumMessageLength | TBD |
Returns
Type | Description |
---|---|
Flow<ByteString, ByteString, NotUsed> | TBD |
SimpleFramingProtocolEncoder(Int32)
Protocol encoder that is used by SimpleFramingProtocol(Int32)
Declaration
public static Flow<ByteString, ByteString, NotUsed> SimpleFramingProtocolEncoder(int maximumMessageLength)
Parameters
Type | Name | Description |
---|---|---|
Int32 | maximumMessageLength | TBD |
Returns
Type | Description |
---|---|
Flow<ByteString, ByteString, NotUsed> | TBD |