Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / examples / Simulator / DOVEBrowser / DataHandler.java
blob4308fd498e96c475a7972f410866cf69b21a7361
1 //
2 // = FILENAME
3 // DataHandler.java
4 //
5 // = AUTHOR
6 // Michael Kircher (mk1@cs.wustl.edu)
7 //
8 // = DESCRIPTION
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);