akka.actor
Interface AbstractActorContext

All Superinterfaces:
ActorContext, ActorRefFactory
All Known Implementing Classes:
ActorCell, ResizablePoolCell, RoutedActorCell

public interface AbstractActorContext
extends ActorContext

AbstractActorContext is the AbstractActor equivalent of ActorContext, containing the Java API


Method Summary
 ActorRef getChild(java.lang.String name)
          Returns a reference to the named child or null if no child with that name exists.
 java.lang.Iterable<ActorRef> getChildren()
          Returns an unmodifiable Java Collection containing the linked actors, please note that the backing map is thread-safe but not immutable
 
Methods inherited from interface akka.actor.ActorContext
become, become, child, children, dispatcher, parent, props, receiveTimeout, self, sender, setReceiveTimeout, system, unbecome, unwatch, watch, writeObject
 
Methods inherited from interface akka.actor.ActorRefFactory
actorFor, actorFor, actorFor, actorFor, actorOf, actorOf, actorSelection, actorSelection, guardian, lookupRoot, provider, stop, systemImpl
 

Method Detail

getChildren

java.lang.Iterable<ActorRef> getChildren()
Returns an unmodifiable Java Collection containing the linked actors, please note that the backing map is thread-safe but not immutable

Returns:
(undocumented)

getChild

ActorRef getChild(java.lang.String name)
Returns a reference to the named child or null if no child with that name exists.

Parameters:
name - (undocumented)
Returns:
(undocumented)