Package akka.stream
Class Supervision$
- java.lang.Object
-
- akka.stream.Supervision$
-
public class Supervision$ extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static Supervision$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description Supervision$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Function<java.lang.Throwable,Supervision.Directive>
getRestartingDecider()
Java API: Decider function that returnsrestart()
for all exceptions.Function<java.lang.Throwable,Supervision.Directive>
getResumingDecider()
Java API: Decider function that returnsresume()
for all exceptions.Function<java.lang.Throwable,Supervision.Directive>
getStoppingDecider()
Java API: Decider function that returnsstop()
for all exceptions.Supervision.Restart$
restart()
Java API: The element is dropped and the stream continues after restarting the operator if application code for processing an element throws an exception.scala.Function1<java.lang.Throwable,Supervision.Directive>
restartingDecider()
Scala API:Decider
that returnsRestart
for all exceptions.Supervision.Resume$
resume()
Java API: The element is dropped and the stream continues if application code for processing an element throws an exception.scala.Function1<java.lang.Throwable,Supervision.Directive>
resumingDecider()
Scala API:Decider
that returnsResume
for all exceptions.Supervision.Stop$
stop()
Java API: The stream will be completed with failure if application code for processing an element throws an exception.scala.Function1<java.lang.Throwable,Supervision.Directive>
stoppingDecider()
Scala API:Decider
that returnsStop
for all exceptions.
-
-
-
Field Detail
-
MODULE$
public static final Supervision$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
stop
public Supervision.Stop$ stop()
Java API: The stream will be completed with failure if application code for processing an element throws an exception.
-
resume
public Supervision.Resume$ resume()
Java API: The element is dropped and the stream continues if application code for processing an element throws an exception.
-
restart
public Supervision.Restart$ restart()
Java API: The element is dropped and the stream continues after restarting the operator if application code for processing an element throws an exception. Restarting an operator means that any accumulated state is cleared. This is typically performed by creating a new instance of the operator.
-
stoppingDecider
public scala.Function1<java.lang.Throwable,Supervision.Directive> stoppingDecider()
Scala API:Decider
that returnsStop
for all exceptions.
-
getStoppingDecider
public Function<java.lang.Throwable,Supervision.Directive> getStoppingDecider()
Java API: Decider function that returnsstop()
for all exceptions.
-
resumingDecider
public scala.Function1<java.lang.Throwable,Supervision.Directive> resumingDecider()
Scala API:Decider
that returnsResume
for all exceptions.
-
getResumingDecider
public Function<java.lang.Throwable,Supervision.Directive> getResumingDecider()
Java API: Decider function that returnsresume()
for all exceptions.
-
restartingDecider
public scala.Function1<java.lang.Throwable,Supervision.Directive> restartingDecider()
Scala API:Decider
that returnsRestart
for all exceptions.
-
getRestartingDecider
public Function<java.lang.Throwable,Supervision.Directive> getRestartingDecider()
Java API: Decider function that returnsrestart()
for all exceptions.
-
-