I am making a DMI RPC call that looks something like this:
DMI.call("myApp", "myClass", "methodToCall", myCallback, new Object[] {param});
the execute method for myCallback I need to know the value for param that was passed in.
I know that I could return it back from the server, but I thought there may be a cleaner way to do this since i get an RPCRequest object passed in to execute.
Is there a way to do this?
Thank you in advance,
Patrick
DMI.call("myApp", "myClass", "methodToCall", myCallback, new Object[] {param});
the execute method for myCallback I need to know the value for param that was passed in.
I know that I could return it back from the server, but I thought there may be a cleaner way to do this since i get an RPCRequest object passed in to execute.
Is there a way to do this?
Thank you in advance,
Patrick
Comment