Uses of Interface
org.mega.gasp.event.DataEvent

Packages that use DataEvent
org.mega.gasp.bluetooth.miniplatform   
org.mega.gasp.event.impl   
org.mega.gasp.listener   
org.mega.gasp.platform   
org.mega.gasp.platform.impl   
org.mega.gasp.server   
 

Uses of DataEvent in org.mega.gasp.bluetooth.miniplatform
 

Methods in org.mega.gasp.bluetooth.miniplatform with parameters of type DataEvent
 void ApplicationInstance.onDataEvent(DataEvent e)
           
private  void ApplicationInstance.notifyDataToListenners(DataEvent e)
          Raise the DataEvent to all external listenners, in particular the game logic threads.
 

Uses of DataEvent in org.mega.gasp.event.impl
 

Classes in org.mega.gasp.event.impl that implement DataEvent
 class DataEventImpl
           
 

Uses of DataEvent in org.mega.gasp.listener
 

Methods in org.mega.gasp.listener with parameters of type DataEvent
 void OnDataEvent.onDataEvent(DataEvent e)
           
 

Uses of DataEvent in org.mega.gasp.platform
 

Methods in org.mega.gasp.platform with parameters of type DataEvent
 void ApplicationInstance.sendDataToActorSession(int actorSessionID, DataEvent dataEvent)
          Send a dataEvent to a specific actorSession.
 

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

Methods in org.mega.gasp.platform.impl with parameters of type DataEvent
 void ApplicationInstanceImpl.onDataEvent(DataEvent e)
          When a DataEvent arrives, notify to all listeners.
private  void ApplicationInstanceImpl.notifyDataToListeners(DataEvent e)
          Raise the DataEvent to all external listenners, in particular the game server logic thread.
 void ApplicationInstanceImpl.sendDataToActorSession(int actorSessionID, DataEvent dataEvent)
          Send a dataEvent to a specific actorSession.
 

Uses of DataEvent in org.mega.gasp.server
 

Methods in org.mega.gasp.server with parameters of type DataEvent
protected  void GASPServer.sendDataTo(int actorSessionID, DataEvent dataEvent)
          Send to the linked applicationInstance a DataEvent for a specific actorSession.
abstract  void GASPServer.onDataEvent(DataEvent de)
          Method called when a DataEvent is received from the platform.