Package akka.actor.typed
Class ChildFailed
- java.lang.Object
-
- akka.actor.typed.Terminated
-
- akka.actor.typed.ChildFailed
-
- All Implemented Interfaces:
Signal
public final class ChildFailed extends Terminated
Child has failed due an uncaught exception
-
-
Constructor Summary
Constructors Constructor Description ChildFailed(ActorRef<scala.runtime.Nothing$> ref, java.lang.Throwable cause)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChildFailed
apply(ActorRef<scala.runtime.Nothing$> ref, java.lang.Throwable cause)
java.lang.Throwable
cause()
boolean
equals(java.lang.Object obj)
java.lang.Throwable
getCause()
Java APIint
hashCode()
java.lang.String
toString()
static scala.Option<scala.Tuple2<ActorRef<scala.runtime.Nothing$>,java.lang.Throwable>>
unapply(ChildFailed t)
-
Methods inherited from class akka.actor.typed.Terminated
apply, getRef, ref, unapply
-
-
-
-
Constructor Detail
-
ChildFailed
public ChildFailed(ActorRef<scala.runtime.Nothing$> ref, java.lang.Throwable cause)
-
-
Method Detail
-
apply
public static ChildFailed apply(ActorRef<scala.runtime.Nothing$> ref, java.lang.Throwable cause)
-
unapply
public static scala.Option<scala.Tuple2<ActorRef<scala.runtime.Nothing$>,java.lang.Throwable>> unapply(ChildFailed t)
-
cause
public java.lang.Throwable cause()
-
getCause
public java.lang.Throwable getCause()
Java API
-
toString
public java.lang.String toString()
- Overrides:
toString
in classTerminated
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classTerminated
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classTerminated
-
-