Enum Directive
TBD
Namespace: Akka.Streams.Supervision
Assembly: Akka.Streams.dll
Syntax
public enum Directive
Fields
| Name | Description |
|---|---|
| Restart | 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. |
| Resume | The element is dropped and the stream continues if application code for processing an element throws an exception. |
| Stop | The stream will be completed with failure if application code for processing an element throws an exception.. |
Edit this page