Class UdpSettings
Assembly: Akka.dll
Syntax
Constructors
|
Improve this Doc
View Source
UdpSettings(String, Boolean, Int32, Int32, String, String)
Declaration
public UdpSettings(string bufferPoolConfigPath, bool traceLogging, int initialSocketAsyncEventArgs, int batchReceiveLimit, string managementDispatcher, string fileIoDispatcher)
Parameters
Type |
Name |
Description |
String |
bufferPoolConfigPath |
|
Boolean |
traceLogging |
|
Int32 |
initialSocketAsyncEventArgs |
|
Int32 |
batchReceiveLimit |
|
String |
managementDispatcher |
|
String |
fileIoDispatcher |
|
Properties
|
Improve this Doc
View Source
BatchReceiveLimit
Declaration
public int BatchReceiveLimit { get; }
Property Value
|
Improve this Doc
View Source
BufferPoolConfigPath
A config path to the section defining which byte buffer pool to use.
Buffer pools are used to mitigate GC-pressure made by potentiall allocation
and deallocation of byte buffers used for writing/receiving data from sockets.
Declaration
public string BufferPoolConfigPath { get; }
Property Value
|
Improve this Doc
View Source
FileIODispatcher
Fully qualified config path which holds the dispatcher configuration
on which file IO tasks are scheduled
Declaration
public string FileIODispatcher { get; }
Property Value
|
Improve this Doc
View Source
InitialSocketAsyncEventArgs
The initial number of SocketAsyncEventArgs to be preallocated. This value
will grow infinitely if needed.
Declaration
public int InitialSocketAsyncEventArgs { get; }
Property Value
|
Improve this Doc
View Source
ManagementDispatcher
Fully qualified config path which holds the dispatcher configuration
for the selector management actors
Declaration
public string ManagementDispatcher { get; }
Property Value
|
Improve this Doc
View Source
TraceLogging
Enable fine grained logging of what goes on inside the implementation.
Be aware that this may log more than once per message sent to the
actors of the tcp implementation.
Declaration
public bool TraceLogging { get; }
Property Value
Methods
|
Improve this Doc
View Source
Create(ActorSystem)
Creates a new instance of UdpSettings class
and fills it with values parsed from akka.io.udp
HOCON
path found in actor system.
Declaration
public static UdpSettings Create(ActorSystem system)
Parameters
Returns
|
Improve this Doc
View Source
Create(Config)
Creates a new instance of UdpSettings class
and fills it with values parsed from provided HOCON config.
Declaration
public static UdpSettings Create(Config config)
Parameters
Type |
Name |
Description |
Config |
config |
TBD
|
Returns
Extension Methods