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.
Inheritance
Tcp.CompoundWrite
Assembly: Akka.dll
Syntax
public sealed class Tcp.CompoundWrite : Tcp.WriteCommand, INoSerializationVerificationNeeded, IEnumerable<Tcp.SimpleWriteCommand>, IEnumerable
Constructors
|
Edit this page
View Source
CompoundWrite(SimpleWriteCommand, WriteCommand)
Declaration
public CompoundWrite(Tcp.SimpleWriteCommand head, Tcp.WriteCommand tailCommand)
Parameters
Properties
|
Edit this page
View Source
Head
Declaration
public Tcp.SimpleWriteCommand Head { get; }
Property Value
|
Edit this page
View Source
TailCommand
Declaration
public Tcp.WriteCommand TailCommand { get; }
Property Value
Methods
|
Edit this page
View Source
GetEnumerator()
Declaration
public IEnumerator<Tcp.SimpleWriteCommand> GetEnumerator()
Returns
|
Edit this page
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements
Extension Methods