Click or drag to resize
Akka.NETActorPublisherTSubscriptionTimeout Property
Subscription timeout after which this actor will become Canceled and reject any incoming "late" subscriber. The actor will receive an SubscriptionTimeoutExceeded message upon which it MUST react by performing all necessary cleanup and stopping itself. Use this feature in order to avoid leaking actors when you suspect that this Publisher may never get subscribed to by some Subscriber.

Subscription timeout after which this actor will become Canceled and reject any incoming "late" subscriber.

The actor will receive an SubscriptionTimeoutExceeded message upon which it MUST react by performing all necessary cleanup and stopping itself.

Use this feature in order to avoid leaking actors when you suspect that this Publisher may never get subscribed to by some Subscriber.

Namespace:  Akka.Streams.Actors
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public TimeSpan SubscriptionTimeout { get; protected set; }

Property Value

Type: TimeSpan
See Also