Class Tcp.CompoundWrite
A write command which aggregates two other write commands. Using this construct
you can chain a number of Tcp.Write commands together in a way
that allows them to be handled as a single write which gets written out to the
network as quickly as possible.
If the sub commands contain ack
requests they will be honored as soon as the
respective write has been written completely.
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public class Tcp.CompoundWrite : Tcp.WriteCommand, INoSerializationVerificationNeeded, IEnumerable<Tcp.SimpleWriteCommand>, IEnumerable
Constructors
| Edit this page View SourceCompoundWrite(SimpleWriteCommand, WriteCommand)
TBD
Declaration
public CompoundWrite(Tcp.SimpleWriteCommand head, Tcp.WriteCommand tailCommand)
Parameters
Type | Name | Description |
---|---|---|
Tcp.SimpleWriteCommand | head | TBD |
Tcp.WriteCommand | tailCommand | TBD |
Properties
| Edit this page View SourceHead
TBD
Declaration
public Tcp.SimpleWriteCommand Head { get; }
Property Value
Type | Description |
---|---|
Tcp.SimpleWriteCommand |
TailCommand
TBD
Declaration
public Tcp.WriteCommand TailCommand { get; }
Property Value
Type | Description |
---|---|
Tcp.WriteCommand |
Methods
| Edit this page View SourceGetEnumerator()
TBD
Declaration
public IEnumerator<Tcp.SimpleWriteCommand> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<Tcp.SimpleWriteCommand> | TBD |
ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |