Class ProducerController.Settings
Inheritance
ProducerController.Settings
Assembly: Akka.dll
Syntax
public sealed class Settings : IEquatable<ProducerController.Settings>
Fields
|
Improve this Doc
View Source
DefaultDeliveryBufferSize
Declaration
public const int DefaultDeliveryBufferSize = 128
Field Value
Properties
|
Improve this Doc
View Source
ChunkLargeMessagesBytes
If set to null
, we will not chunk large messages. Otherwise, we will chunk messages larger than this value
into [1,N] chunks of this size.
Declaration
public int? ChunkLargeMessagesBytes { get; set; }
Property Value
|
Improve this Doc
View Source
DurableQueueRequestTimeout
The timeout for each request to the durable queue.
Declaration
public TimeSpan DurableQueueRequestTimeout { get; set; }
Property Value
|
Improve this Doc
View Source
DurableQueueResendFirstInterval
Timeframe for re-delivery of the first message
Declaration
public TimeSpan DurableQueueResendFirstInterval { get; set; }
Property Value
|
Improve this Doc
View Source
DurableQueueRetryAttempts
Number of retries allowed for each request to the durable queue.
Declaration
public int DurableQueueRetryAttempts { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Create(ActorSystem)
Declaration
public static ProducerController.Settings Create(ActorSystem actorSystem)
Parameters
Returns
|
Improve this Doc
View Source
Create(Config)
Declaration
public static ProducerController.Settings Create(Config config)
Parameters
Type |
Name |
Description |
Config |
config |
|
Returns
Implements
Extension Methods