oneway
allows you to modify these invocation semantics.
oneway
, a client that
calls the operation will not block while the object processes the call.1
For example, you could add a oneway operation to interface Account
that sends a notice to an Account
object, as follows:
module Finance { interface Account { oneway void notice(in string text); ... }; };
out
or inout
parameters and cannot return a value.
raises
clause.