com.jme3.network.rmi
クラス RemoteMethodCallMessage

java.lang.Object
  上位を拡張 com.jme3.network.AbstractMessage
      上位を拡張 com.jme3.network.rmi.RemoteMethodCallMessage
すべての実装されたインタフェース:
Message

public class RemoteMethodCallMessage
extends AbstractMessage

Sent to a remote client to make a remote method invocation.


フィールドの概要
 java.lang.Object[] args
          Arguments of the remote method invocation.
 short invocationId
          Invocation ID is used to identify a particular call if the calling client needs the return value of the called RMI method.
 short methodId
          The method ID used for look-up in the LocalObject.methods array.
 int objectId
          The object ID on which the call is being made.
 
コンストラクタの概要
RemoteMethodCallMessage()
           
 
メソッドの概要
 java.lang.String toString()
           
 
クラス com.jme3.network.AbstractMessage から継承されたメソッド
isReliable, setReliable
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

フィールドの詳細

objectId

public int objectId
The object ID on which the call is being made.


methodId

public short methodId
The method ID used for look-up in the LocalObject.methods array.


invocationId

public short invocationId
Invocation 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.


args

public java.lang.Object[] args
Arguments of the remote method invocation.

コンストラクタの詳細

RemoteMethodCallMessage

public RemoteMethodCallMessage()
メソッドの詳細

toString

public java.lang.String toString()
オーバーライド:
クラス java.lang.Object 内の toString