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 CompoundWrite : Tcp.WriteCommand, INoSerializationVerificationNeeded, IEnumerable<Tcp.SimpleWriteCommand>, IEnumerable
Constructors
| Improve this Doc View SourceCompoundWrite(Tcp.SimpleWriteCommand, Tcp.WriteCommand)
TBD
Declaration
public CompoundWrite(Tcp.SimpleWriteCommand head, Tcp.WriteCommand tailCommand)
Parameters
Type | Name | Description |
---|---|---|
Tcp.SimpleWriteCommand | head | TBD |
Tcp.WriteCommand | tailCommand | TBD |
Properties
| Improve this Doc 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
| Improve this Doc 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 |
Overrides
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator |