Package akka.actor.typed
Interface TypedActorContext<T>
-
- All Known Subinterfaces:
ActorContext<T>
,ActorContext<T>
,ActorContextImpl<T>
- All Known Implementing Classes:
ActorContextAdapter
,EffectfulActorContext
,StubbedActorContext
public interface TypedActorContext<T>
Get thejavadsl
of thisActorContext
.
-
-
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
.- Returns:
- (undocumented)
-
asScala
ActorContext<T> asScala()
Get thescaladsl
of thisActorContext
.- Returns:
- (undocumented)
-
-