public void register()
-
connects application with the rest of the system; this method should be called during the program startup
|
public void send (AppEventMessage m)
-
sends information wrapped in a AppEventMessage class through TANGO system
|
public abstract void receive (AppEventMessage m)
-
callback method called each time a new message arrives; it's implementation is application dependent and has to contain application-specific code for event handling
|