PaP
Class ActorDummy

java.lang.Object
  |
  +--PaP.Actor
        |
        +--PaP.ApplicationActor
              |
              +--PaP.ActorDummy
All Implemented Interfaces:
ActorInterface, ControlInterface, java.rmi.Remote, java.io.Serializable

public class ActorDummy
extends ApplicationActor

See Also:
Serialized Form

Fields inherited from class PaP.Actor
bf, context, fh
 
Constructor Summary
ActorDummy()
           
 
Method Summary
 RequestResult applicationActorEntry(RequestPars pRP)
          Defines the common entry point for every actor by declaring this method abstract.
 
Methods inherited from class PaP.ApplicationActor
actorBehaviourPlugIn, actorBehaviourPlugOut, actorCapabilities, actorChangeBehaviour, actorEntry, actorPlay, actorPlugIn, actorPlugOut, anyOtherRequestType, callActorChangeBehaviour, control, dbg, init, loginUser, logoutUser, playChangesPlugIn, playPlugIn, playPlugOut, requestToActor, roleFigurePlugIn, roleFigurePlugOut, roleSessionAction, sessionResume, sessionSuspend, sessionUpdate, subscribeCancel, subscribeReport, subscribeRequest
 
Methods inherited from class PaP.Actor
findRoleSession, getGAI, start, status, term
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

ActorDummy

public ActorDummy()
Method Detail

applicationActorEntry

public RequestResult applicationActorEntry(RequestPars pRP)
                                    throws java.lang.Exception
Description copied from class: ApplicationActor
Defines the common entry point for every actor by declaring this method abstract. Allmost all request received through actorEntry() is forwarded to the actor by calling this method so every actor must implement this method to receive any requests. This is the ONLY entry to the application part of actors in addition to subscribeReport() and anyOtherRequestType().
Overrides:
applicationActorEntry in class ApplicationActor
Following copied from class: PaP.ApplicationActor
Parameters:
rp - Parameters for the activity this actorEntry will attempt to carry out.
Returns:
RequestResult indicating wether the request was handled successfully or not.