Package akka.actor.typed
Interface TypedActorContext<T>
-
- All Known Subinterfaces:
ActorContext<T>
,ActorContext<T>
,ActorContextImpl<T>
public interface TypedActorContext<T>
This trait is not meant to be extended by user code. If you do so, you may lose binary compatibility.Not for user extension.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActorContext<T>
asJava()
Get thejavadsl
of thisActorContext
.ActorContext<T>
asScala()
Get thescaladsl
of thisActorContext
.
-
-
-
Method Detail
-
asJava
ActorContext<T> asJava()
Get thejavadsl
of thisActorContext
.
-
asScala
ActorContext<T> asScala()
Get thescaladsl
of thisActorContext
.
-
-