| Directive Enumeration |
TBD
Namespace:
Akka.Streams.Supervision
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax Members
| Member name | Value | Description |
---|
| Stop | 0 |
The stream will be completed with failure if application code for processing an element throws an exception..
|
| Resume | 1 |
The element is dropped and the stream continues if application code for processing an element throws an exception.
|
| Restart | 2 |
The element is dropped and the stream continues after restarting the stage if application code for processing
an element throws an exception. Restarting a stage means that any accumulated state is cleared.
This is typically performed by creating a new instance of the stage.
|
See Also