In server side, create a com.ibm.btt.DSEEventObject instance and in BTT
client side create a com.ibm.btt.base.DSEEventObject. Both com.ibm.btt.event.DSEEventObject
and com.ibm.btt.base.DSEEventObject are subclasses of EventObject
with the following attributes:
name - the name of the event to which a handler should be registered
sourceName - the name of the notifier that signals the event
parameters - a Hashtable containing the event information required by
the event handler. Note: In com.ibm.btt.event.DSEEventObject, the parameters
is type java.util.Hashtable while in com.ibm.btt.base.DSEEventOject, the parameters
type is com.ibm.btt.base.Hashtable.
originWorkstation - the TID of the workstation generating the event
One of the signalEvent methods accepts a DSEEventObject argument.
If the application is already working with an EventObject instance, use
the signalEvent() method that accepts a string with the event name and, if
required, a Hashtable containing the event attributes as arguments. This method
builds a DSEEventObject that the event manager sends to the listening remote
workstation.