Uses of Interface
org.mega.gasp.platform.MasterApplicationInstance

Packages that use MasterApplicationInstance
org.mega.gasp.platform   
org.mega.gasp.platform.impl   
 

Uses of MasterApplicationInstance in org.mega.gasp.platform
 

Methods in org.mega.gasp.platform that return MasterApplicationInstance
 MasterApplicationInstance Platform.getMasterApplicationInstance(int applicationID)
          Returns the MasterApplicationInstance associated with the application ID or if it is not already instantiates, initialize it.
 MasterApplicationInstance Platform.getSessionOwner(int sID)
          Return the MasterApplicationInstance containing the sID.
 MasterApplicationInstance Platform.getActorOwner(int aID)
          Return the MasterApplicationInstance containing the aID.
 

Uses of MasterApplicationInstance in org.mega.gasp.platform.impl
 

Classes in org.mega.gasp.platform.impl that implement MasterApplicationInstance
 class MasterApplicationInstanceImpl
          MasterApplicationInstance represents the container of all ApplicationInstance of a specific application.
 

Fields in org.mega.gasp.platform.impl declared as MasterApplicationInstance
private  MasterApplicationInstance ApplicationInstanceImpl.masterApp
           
 

Methods in org.mega.gasp.platform.impl that return MasterApplicationInstance
 MasterApplicationInstance PlatformImpl.getMasterApplicationInstance(int applicationID)
          Returns the MasterApplicationInstance associated with the application ID or if it is not already instantiates, initialize it.
 MasterApplicationInstance PlatformImpl.getSessionOwner(int sID)
          Return the MasterApplicationInstance containing the sID.
 MasterApplicationInstance PlatformImpl.getActorOwner(int aID)
          Return the MasterApplicationInstance containing the aID.
private  MasterApplicationInstance PlatformImpl.getLinkedSessionOwner(int aSID)
          Return the MasterApplication hosts the Session linked to the ActorSession ID.
 

Methods in org.mega.gasp.platform.impl with parameters of type MasterApplicationInstance
private  boolean PlatformImpl.addMasterApplicationInstance(MasterApplicationInstance masterAppInstance)
          Add the created MasterApplication to the MasterApplications vector.
private  int PlatformImpl.rejoinAI(MasterApplicationInstance masterApp, int aSID)
          Rejoin the linked AI after a deconnection.
 

Constructors in org.mega.gasp.platform.impl with parameters of type MasterApplicationInstance
ApplicationInstanceImpl(MasterApplicationInstance masterApplication, Session ownerSession, int minActors, int maxActors, java.lang.String[] actors, java.lang.String path, byte model)