CONTENTS | PREV | NEXT | Java Remote Method Invocation |
The class Operation holds a description of a Java method for a remote object.
Note - The Operation interface is deprecated in JDK 1.2. The JDK 1.2 stub protocol no longer uses the oldRemoteRef.invoke
method which takes an Operation as one of its arguments. In JDK 1.2, stubs now use the newinvoke
method which does not require Operation as a parameter.
package java.rmi.server; public class Operation { public Operation(String op); public String getOperation(); public String toString(); }
An Operation object is typically constructed with the method signature.The method
getOperation
returns the contents of the operation descriptor (the value with which it was initialized).The method
toString
also returns the string representation of the operation descriptor (typically the method signature).