this.disp = rpcDispatcher;
}
public String outerMethod() {
log("**** outerMethod() received, calling innerMethod() on all members");
MethodCall call = new MethodCall("innerMethod", new Object[0], new Class[0]);
// RspList rspList = disp.callRemoteMethods(null, call, GroupRequest.GET_ALL, 5000);
RequestOptions opts=new RequestOptions(GroupRequest.GET_ALL, 0, false, null, (byte)0);
opts.setFlags(Message.OOB);
RspList rspList = disp.callRemoteMethods(null, call, opts);
Vector results = rspList.getResults();