client MyClient { /* The EventHandler IDL file. Server to client interface example. */
doSomething {
string myStrings[];
int myInt;
} /* The "client" keyword in the IDL file declares a collection of methods */
} /* the server can call asynchronously in the client. */
public interface MyClient { /* The interface generated by the EH IDL compiler */
public void doSomething(String[] myStrings, int myInt);//Implemented in application
}