osl.manager
Class ActorContext

java.lang.Object
  |
  +--osl.manager.ActorContext

public class ActorContext
extends java.lang.Object
implements java.io.Serializable

This class defines the context, or surroundings, of an actor implementation (i.e. an instance of ActorImpl). An instance of this class is passed within an ActorCreateRequest. Currently, a context contaings the following information:

Actor implementations utilize this information in an implementation-dependent fashion.

Version:
$Revision: 1.1 $ ($Date: 1998/06/12 21:32:10 $)
See Also:
ActorImpl, Actor, Serialized Form

Field Summary
 ActorName stderr
          The name of the "stderr" output stream actor for the new implementation.
 ActorName stdin
          The name of the "stdin" input stream actor for the new implementation.
 ActorName stdout
          The name of the "stdout" output stream actor for the new implementation.
 
Constructor Summary
ActorContext()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

stdout

public ActorName stdout
The name of the "stdout" output stream actor for the new implementation. The "stdout" actor is always an instance of StreamOutputActor.
See Also:
StreamOutputActor

stdin

public ActorName stdin
The name of the "stdin" input stream actor for the new implementation. The "stdin" actor is always an instance of StreamInputActor.
See Also:
StreamInputActor

stderr

public ActorName stderr
The name of the "stderr" output stream actor for the new implementation. The "stderr" actor is always an instance of StreamOutputActor.
See Also:
StreamOutputActor
Constructor Detail

ActorContext

public ActorContext()