Package org.apache.pekko.actor
Interface TypedActorFactory
-
- All Known Implementing Classes:
ContextualTypedActorFactory,TypedActorExtension
public interface TypedActorFactoryDeprecated.Use 'org.apache.pekko.actor.typed' API. Since Akka 2.6.0.A TypedActorFactory is something that can created TypedActor instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ActorRefFactoryactorFactory()Deprecated.Underlying dependency is to be able to create normal ActorsActorRefgetActorRefFor(java.lang.Object proxy)Deprecated.Retrieves the underlying ActorRef for the supplied TypedActor proxy, or null if none foundbooleanisTypedActor(java.lang.Object proxyOrNot)Deprecated.Returns whether the supplied AnyRef is a TypedActor proxy or notbooleanpoisonPill(java.lang.Object proxy)Deprecated.Sends a PoisonPill the underlying ActorRef for the supplied TypedActor proxy, if any, returns whether it could find the find the ActorRef or notbooleanstop(java.lang.Object proxy)Deprecated.Stops the underlying ActorRef for the supplied TypedActor proxy, if any, returns whether it could find the find the ActorRef or notTypedActorExtensiontypedActor()Deprecated.Underlying dependency to a TypedActorExtension, which can either be contextual or ActorSystem "global"<R,T extends R>
RtypedActorOf(TypedProps<T> props)Deprecated.Creates a new TypedActor with the specified properties<R,T extends R>
RtypedActorOf(TypedProps<T> props, java.lang.String name)Deprecated.Creates a new TypedActor with the specified properties<R,T extends R>
RtypedActorOf(TypedProps<T> props, ActorRef actorRef)Deprecated.Creates a TypedActor that intercepts the calls and forwards them aspekko.actor.TypedActor.MethodCallto the provided ActorRef.
-
-
-
Method Detail
-
actorFactory
ActorRefFactory actorFactory()
Deprecated.Underlying dependency is to be able to create normal Actors
-
getActorRefFor
ActorRef getActorRefFor(java.lang.Object proxy)
Deprecated.Retrieves the underlying ActorRef for the supplied TypedActor proxy, or null if none found
-
isTypedActor
boolean isTypedActor(java.lang.Object proxyOrNot)
Deprecated.Returns whether the supplied AnyRef is a TypedActor proxy or not
-
poisonPill
boolean poisonPill(java.lang.Object proxy)
Deprecated.Sends a PoisonPill the underlying ActorRef for the supplied TypedActor proxy, if any, returns whether it could find the find the ActorRef or not
-
stop
boolean stop(java.lang.Object proxy)
Deprecated.Stops the underlying ActorRef for the supplied TypedActor proxy, if any, returns whether it could find the find the ActorRef or not
-
typedActor
TypedActorExtension typedActor()
Deprecated.Underlying dependency to a TypedActorExtension, which can either be contextual or ActorSystem "global"
-
typedActorOf
<R,T extends R> R typedActorOf(TypedProps<T> props)
Deprecated.Creates a new TypedActor with the specified properties
-
typedActorOf
<R,T extends R> R typedActorOf(TypedProps<T> props, java.lang.String name)
Deprecated.Creates a new TypedActor with the specified properties
-
typedActorOf
<R,T extends R> R typedActorOf(TypedProps<T> props, ActorRef actorRef)
Deprecated.Creates a TypedActor that intercepts the calls and forwards them aspekko.actor.TypedActor.MethodCallto the provided ActorRef.
-
-