osl.manager
Class ActorMigrationStructure

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

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

This class defines a structure for encapsulating an actor in the process of migration. This structure is passed between actor managers during a migration and reassembled at the target manager.

Version:
$Revision: 1.3 $ ($Date: 1998/06/12 21:32:12 $)
See Also:
ActorManager, ActorName, Serialized Form

Field Summary
 ActorManagerName sender
          The ActorManagerName of the manager sending the actor to be migrated.
 ActorImpl toMigrate
          The Actor to restart after migration.
 
Constructor Summary
ActorMigrationStructure(ActorManagerName S, ActorImpl A)
          The most useful constructor for this class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sender

public ActorManagerName sender
The ActorManagerName of the manager sending the actor to be migrated.

toMigrate

public ActorImpl toMigrate
The Actor to restart after migration.
Constructor Detail

ActorMigrationStructure

public ActorMigrationStructure(ActorManagerName S,
                               ActorImpl A)
The most useful constructor for this class.