Package com.jme3.network.rmi
Class RemoteMethodCallMessage
java.lang.Object
com.jme3.network.AbstractMessage
com.jme3.network.rmi.RemoteMethodCallMessage
- All Implemented Interfaces:
- Message
Sent to a remote client to make a remote method invocation.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionObject[]Arguments of the remote method invocation.shortInvocation ID is used to identify a particular call if the calling client needs the return value of the called RMI method.shortThe method ID used for look-up in the LocalObject.methods array.intThe object ID on which the call is being made.
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class com.jme3.network.AbstractMessageisReliable, setReliable
- 
Field Details- 
objectIdpublic int objectIdThe object ID on which the call is being made.
- 
methodIdpublic short methodIdThe method ID used for look-up in the LocalObject.methods array.
- 
invocationIdpublic short invocationIdInvocation ID is used to identify a particular call if the calling client needs the return value of the called RMI method. This is set to zero if the method does not return a value.
- 
argsArguments of the remote method invocation.
 
- 
- 
Constructor Details- 
RemoteMethodCallMessagepublic RemoteMethodCallMessage()
 
- 
- 
Method Details