|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jgroups.blocks.MethodCall
public class MethodCall
A method call is the JGroups representation of a remote method. It includes the name of the method (case sensitive) and a list of arguments. A method call is serializable and can be passed over the wire.
Field Summary | |
---|---|
protected java.lang.Object[] |
args
The arguments of the method. |
protected static short |
ID
Use an ID to map to a method |
protected static Log |
log
|
protected java.lang.reflect.Method |
method
The Method of the call. |
protected static short |
METHOD
Explicitly ship the method, caller has to determine method himself. |
protected short |
method_id
The ID of a method, maps to a java.lang.reflect.Method |
protected java.lang.String |
method_name
The name of the method, case sensitive. |
protected short |
mode
Which mode to use. |
protected static short |
OLD
Infer the method from the arguments. |
protected java.lang.Class[] |
types
The class types, e.g., new Class[]{String.class, int.class}. |
protected static short |
TYPES
Use class information. |
Constructor Summary | |
---|---|
MethodCall()
Creates an empty method call, this is always invalid, until setName() has been called. |
|
MethodCall(java.lang.reflect.Method method)
|
|
MethodCall(java.lang.reflect.Method method,
java.lang.Object... arguments)
|
|
MethodCall(short method_id,
java.lang.Object... args)
|
|
MethodCall(java.lang.String method_name,
java.lang.Object[] args,
java.lang.Class[] types)
|
Method Summary | |
---|---|
static java.lang.Object |
convert(java.lang.String arg,
java.lang.Class<?> type)
|
static java.lang.reflect.Method |
findMethod(java.lang.Class target_class,
java.lang.String method_name,
java.lang.Object[] args)
Called by the ProbeHandler impl. |
java.lang.Object[] |
getArgs()
returns an ordered list of arguments used for the method invokation |
short |
getId()
|
java.lang.reflect.Method |
getMethod()
|
int |
getMode()
|
java.lang.String |
getName()
returns the name of the method to be invoked using this method call object |
java.lang.Object |
invoke(java.lang.Object target)
Invokes the method with the supplied arguments against the target object. |
java.lang.Object |
invoke(java.lang.Object target,
java.lang.Object[] args)
|
static boolean |
isPrimitiveType(java.lang.Class<?> type)
|
void |
readExternal(java.io.ObjectInput in)
|
void |
setArgs(java.lang.Object... args)
|
void |
setId(short method_id)
|
void |
setMethod(java.lang.reflect.Method m)
|
void |
setName(java.lang.String n)
sets the name for this MethodCall and allowing you to reuse the same object for a different method invokation of a different method |
java.lang.String |
toString()
|
java.lang.String |
toStringDetails()
|
void |
writeExternal(java.io.ObjectOutput out)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected java.lang.String method_name
protected short method_id
protected java.lang.Object[] args
protected java.lang.Class[] types
protected java.lang.reflect.Method method
protected static final Log log
protected short mode
protected static final short OLD
protected static final short METHOD
protected static final short TYPES
protected static final short ID
Constructor Detail |
---|
public MethodCall()
setName()
has been called.
public MethodCall(java.lang.reflect.Method method)
public MethodCall(java.lang.reflect.Method method, java.lang.Object... arguments)
public MethodCall(short method_id, java.lang.Object... args)
public MethodCall(java.lang.String method_name, java.lang.Object[] args, java.lang.Class[] types)
Method Detail |
---|
public int getMode()
public java.lang.String getName()
public void setName(java.lang.String n)
n
- - a case sensitive method namepublic short getId()
public void setId(short method_id)
public java.lang.Object[] getArgs()
public void setArgs(java.lang.Object... args)
public java.lang.reflect.Method getMethod()
public void setMethod(java.lang.reflect.Method m)
public static java.lang.reflect.Method findMethod(java.lang.Class target_class, java.lang.String method_name, java.lang.Object[] args) throws java.lang.Exception
java.lang.Exception
public java.lang.Object invoke(java.lang.Object target) throws java.lang.Exception
target
- - the object that you want to invoke the method on
java.lang.Exception
public java.lang.Object invoke(java.lang.Object target, java.lang.Object[] args) throws java.lang.Exception
java.lang.Exception
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toStringDetails()
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException
writeExternal
in interface java.io.Externalizable
java.io.IOException
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException
readExternal
in interface java.io.Externalizable
java.io.IOException
java.lang.ClassNotFoundException
public static java.lang.Object convert(java.lang.String arg, java.lang.Class<?> type)
public static boolean isPrimitiveType(java.lang.Class<?> type)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |