com.jme3.network.message
クラス Message

java.lang.Object
  上位を拡張 com.jme3.network.AbstractMessage
      上位を拡張 com.jme3.network.message.Message
すべての実装されたインタフェース:
Message
直系の既知のサブクラス:
ClientRegistrationMessage, CompressedMessage, DisconnectMessage, DiscoverHostMessage, StreamMessage, SyncMessage

推奨されていません。 Message implementations should extend instead or use the for referencing.

@Deprecated
public class Message
extends AbstractMessage

Message represents data being sent to the other side. This can be anything, and it will be serialized field by field. Extend this class if you wish to provide objects with common fields to the other side.


コンストラクタの概要
Message()
          推奨されていません。  
Message(boolean reliable)
          推奨されていません。  
 
メソッドの概要
 Client getClient()
          推奨されていません。 This method always returns null in the new API.
 Connection getConnection()
          推奨されていません。 This method always returns null in the new API.
 boolean isReliable()
          推奨されていません。 Indicates which way an outgoing message should be sent or which way an incoming message was sent.
 void setClient(Client connector)
          推奨されていません。 
 void setConnection(Connection connection)
          推奨されていません。 
 Message setReliable(boolean reliable)
          推奨されていません。 Sets this message to 'reliable' or not and returns this message.
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Message

public Message()
推奨されていません。 

Message

public Message(boolean reliable)
推奨されていません。 
メソッドの詳細

isReliable

public boolean isReliable()
推奨されていません。 
クラス AbstractMessage の記述:
Indicates which way an outgoing message should be sent or which way an incoming message was sent.

定義:
インタフェース Message 内の isReliable
オーバーライド:
クラス AbstractMessage 内の isReliable

setReliable

public Message setReliable(boolean reliable)
推奨されていません。 
クラス AbstractMessage の記述:
Sets this message to 'reliable' or not and returns this message.

定義:
インタフェース Message 内の setReliable
オーバーライド:
クラス AbstractMessage 内の setReliable

getClient

@Deprecated
public Client getClient()
推奨されていません。 This method always returns null in the new API.


setClient

@Deprecated
public void setClient(Client connector)
推奨されていません。 


getConnection

@Deprecated
public Connection getConnection()
推奨されていません。 This method always returns null in the new API.


setConnection

@Deprecated
public void setConnection(Connection connection)
推奨されていません。