Example: Server-side Skeleton
abstract public class _sk_Count implements CORBA.Object, Count {
public static void exec(Count _self, IOStream _stream, int _methodId) {
case 0: // call increment
int result = _self.increment();
_stream.write_int(_result); return;
int value = _stream.read_int();
_self.sum(value); return;
_stream.write_int(value);
Note: This code is created automatically by
IDL->Java pre-compiler from the IDL spec