Copyright (c) Qusay H. Mahmoud
24
IDL Structure (Operations)
lThey describe the methods of an interface
lThey have a return type and parameters
lParameters are flagged as:
–in: parameter is passed from client to server
–out: parameter is passed from server to client
–inout: parameter is passed in both directions
lvoid withdraw(in unsigned long amount);
lvoid add(in long a, in long b, out long sum);