6 // Michael Kircher (mk1@cs.wustl.edu)
9 // This is the interface for data handling in the simulation demo
10 // using the Event Channel as transport media.
12 // ============================================================================
14 import org
.omg
.CORBA
.*;
16 public interface DataHandler
{
18 // entry point for an consumer to put data event into the data handler
19 public void update (RtecEventComm
.Event event
);
21 // get a list of the Observables names to allow selection
22 public java
.util
.Enumeration
getObservablesList ();
24 // get a specific Observable
25 public DemoObservable
getObservable(String name
);
27 // get the property of an observable
28 public int getObservableProperty (String name
);