Class Inet.SO.SendBufferSize
Socket option that sets the SendBuffer size on a socket after connecting.
Inherited Members
Namespace: Akka.IO
Assembly: Akka.dll
Syntax
public class Inet.SO.SendBufferSize : Inet.SocketOption
Constructors
| Edit this page View SourceSendBufferSize(int)
Creates a new Inet.SO.SendBufferSize option with the specified buffer size.
Declaration
public SendBufferSize(int size)
Parameters
| Type | Name | Description |
|---|---|---|
| int | size | The send buffer size in bytes. |
Methods
| Edit this page View SourceAfterConnect(Socket)
Sets the send buffer size on the socket after connecting.
Declaration
public override void AfterConnect(Socket s)
Parameters
| Type | Name | Description |
|---|---|---|
| Socket | s | The connected socket to configure. |
Edit this page