Uses of Interface
com.caucho.bam.actor.BamActorRef

Packages that use BamActorRef
com.caucho.bam.actor   
com.caucho.bam.manager   
com.caucho.bam.proxy   
com.caucho.bam.router   
com.caucho.hmtp   
 

Uses of BamActorRef in com.caucho.bam.actor
 

Classes in com.caucho.bam.actor that implement BamActorRef
 class SimpleActorRef
          Abstract implementation of a BAM actor.
 

Methods in com.caucho.bam.actor with parameters of type BamActorRef
 void AbstractActorSender.message(BamActorRef to, java.io.Serializable payload)
          Sends a unidirectional message to an ActorHolder, addressed by the Actor's address.
 void ActorSender.message(BamActorRef to, java.io.Serializable payload)
          Sends a unidirectional message to an ActorHolder, addressed by the Actor's address.
 void AbstractActorSender.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback)
          Sends a query information call (get) to an actor, providing a callback to receive the result or error.
 void ActorSender.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback)
          Sends a query information call (get) to an actor, providing a callback to receive the result or error.
 void AbstractActorSender.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback, long timeout)
          Sends a query information call (get) to an actor, providing a callback to receive the result or error.
 void ActorSender.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback, long timeout)
          Sends a query information call (get) to an actor, providing a callback to receive the result or error.
 

Uses of BamActorRef in com.caucho.bam.manager
 

Methods in com.caucho.bam.manager that return BamActorRef
 BamActorRef BamManager.createActorRef(java.lang.String to)
           
 BamActorRef SimpleBamManager.createActorRef(java.lang.String to)
           
 

Methods in com.caucho.bam.manager with parameters of type BamActorRef
<T> T
BamManager.createProxy(java.lang.Class<T> api, BamActorRef to, ActorSender sender)
           
<T> T
SimpleBamManager.createProxy(java.lang.Class<T> api, BamActorRef to, ActorSender sender)
           
 

Uses of BamActorRef in com.caucho.bam.proxy
 

Methods in com.caucho.bam.proxy with parameters of type BamActorRef
static
<T> T
BamProxyFactory.createProxy(java.lang.Class<T> api, BamActorRef to, ActorSender sender, long timeout)
           
 

Uses of BamActorRef in com.caucho.bam.router
 

Subinterfaces of BamActorRef in com.caucho.bam.router
 interface BamRouter
          Sends a message to the first available actor.
 

Classes in com.caucho.bam.router that implement BamActorRef
 class AbstractBamRouter
          Sends a message to the first available actor.
 class BamAllActorRouter
          Sends a message to the first available actor.
 class BamFirstActorRouter
          Sends a message to the first available actor.
 class BamFirstResultRouter
          Sends a message to the first available actor.
 

Methods in com.caucho.bam.router that return BamActorRef
protected  BamActorRef[] BamAllActorRouter.getActors()
           
protected  BamActorRef[] BamFirstActorRouter.getActors()
           
protected  BamActorRef[] BamFirstResultRouter.getActors()
           
 

Constructors in com.caucho.bam.router with parameters of type BamActorRef
BamAllActorRouter(ActorSender sender, BamActorRef... actors)
           
BamFirstActorRouter(ActorSender sender, long timeout, BamActorRef... actors)
           
BamFirstResultRouter(ActorSender sender, long timeout, BamActorRef... actors)
           
 

Uses of BamActorRef in com.caucho.hmtp
 

Methods in com.caucho.hmtp with parameters of type BamActorRef
 void HmtpClient.message(BamActorRef to, java.io.Serializable payload)
           
 void HmtpClient.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback)
           
 void HmtpClient.query(BamActorRef to, java.io.Serializable payload, QueryCallback callback, long timeout)