| StreamSubscriptionTimeoutTerminationMode Enumeration |
This mode describes what shall happen when the subscription timeout expires
for substream Publishers created by operations like PrefixAndTail``2(IFlowUMP, UMP, Int32).
Namespace:
Akka.Streams
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public enum StreamSubscriptionTimeoutTerminationMode
type StreamSubscriptionTimeoutTerminationMode
Members
| Member name | Value | Description |
---|
| NoopTermination | 0 |
Do not do anything when timeout expires.
|
| WarnTermination | 1 |
Log a warning when the timeout expires.
|
| CancelTermination | 2 |
When the timeout expires attach a Subscriber that will immediately cancel its subscription.
|
See Also