Package akka.actor
Class TypedActorExtension
- java.lang.Object
 - 
- akka.actor.TypedActorExtension
 
 
- 
- All Implemented Interfaces:
 Extension,TypedActorFactory
public class TypedActorExtension extends java.lang.Object implements TypedActorFactory, Extension
 
- 
- 
Constructor Summary
Constructors Constructor Description TypedActorExtension(ExtendedActorSystem system) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ActorRefFactoryactorFactory()Underlying dependency is to be able to create normal ActorsTimeoutDefaultReturnTimeout()Default timeout for typed actor methods with non-void return typeActorRefgetActorRefFor(java.lang.Object proxy)Retrieves the underlying ActorRef for the supplied TypedActor proxy, or null if none foundbooleanisTypedActor(java.lang.Object proxyOrNot)Returns whether the supplied AnyRef is a TypedActor proxy or notExtendedActorSystemsystem()protected TypedActorExtensiontypedActor()Underlying dependency to a TypedActorExtension, which can either be contextual or ActorSystem "global"- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface akka.actor.TypedActorFactory
poisonPill, stop, typedActorOf, typedActorOf, typedActorOf 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
TypedActorExtension
public TypedActorExtension(ExtendedActorSystem system)
 
 - 
 
- 
Method Detail
- 
DefaultReturnTimeout
public final Timeout DefaultReturnTimeout()
Default timeout for typed actor methods with non-void return type 
- 
actorFactory
protected ActorRefFactory actorFactory()
Description copied from interface:TypedActorFactoryUnderlying dependency is to be able to create normal Actors- Specified by:
 actorFactoryin interfaceTypedActorFactory
 
- 
getActorRefFor
public ActorRef getActorRefFor(java.lang.Object proxy)
Retrieves the underlying ActorRef for the supplied TypedActor proxy, or null if none found- Specified by:
 getActorRefForin interfaceTypedActorFactory
 
- 
isTypedActor
public boolean isTypedActor(java.lang.Object proxyOrNot)
Returns whether the supplied AnyRef is a TypedActor proxy or not- Specified by:
 isTypedActorin interfaceTypedActorFactory
 
- 
system
public ExtendedActorSystem system()
 
- 
typedActor
protected TypedActorExtension typedActor()
Description copied from interface:TypedActorFactoryUnderlying dependency to a TypedActorExtension, which can either be contextual or ActorSystem "global"- Specified by:
 typedActorin interfaceTypedActorFactory
 
 - 
 
 -