interface example_object{
    void operation_on_object(in long a, inout boolean b);
  }
  

This specification defines one object, on which a client can invoke one operation returning no results, but taking two arguments. In addition to the type, the parameters are described by in/out/inout attributes which signal whether the value will be passed from client to server, the other way around or both ways.


slide: Interface