インタフェース
com.jme3.network.Message の使用

Message を使用しているパッケージ
com.jme3.network The network package contains the public API for the jME3 SpiderMonkey networking module. 
com.jme3.network.base The base package contains the default implementations for the Client and Server interfaces from the public API. 
com.jme3.network.message   
com.jme3.network.rmi   
com.jme3.network.sync   
 

com.jme3.network での Message の使用
 

Message を実装している com.jme3.network のクラス
 class AbstractMessage
          Interface implemented by all network messages.
 

Message を返す com.jme3.network のメソッド
 Message AbstractMessage.setReliable(boolean f)
          Sets this message to 'reliable' or not and returns this message.
 Message Message.setReliable(boolean f)
          Sets this message to 'reliable' or not and returns this message.
 

Message 型のパラメータを持つ com.jme3.network のメソッド
 void Server.broadcast(Filter<? super HostedConnection> filter, Message message)
          Sends the specified message to all connected clients that match the filter.
 void Server.broadcast(Message message)
          Sends the specified message to all connected clients.
 void MessageListener.messageReceived(S source, Message m)
           
 void Client.send(Message message)
          Sends a message to the server.
 void MessageConnection.send(Message message)
          Sends a message to the other end of the connection.
 

com.jme3.network.base での Message の使用
 

Message を返す com.jme3.network.base のメソッド
 Message MessageProtocol.getMessage()
          Retrieves and removes an extracted message from the accumulated buffer or returns null if there are no more messages.
 

Message 型のパラメータを持つ com.jme3.network.base のメソッド
 void DefaultServer.broadcast(Filter<? super HostedConnection> filter, Message message)
           
 void DefaultServer.broadcast(Message message)
           
 void MessageListenerRegistry.messageReceived(S source, Message m)
           
static java.nio.ByteBuffer MessageProtocol.messageToBuffer(Message message, java.nio.ByteBuffer target)
          Converts a message to a ByteBuffer using the Serializer and the (short length) + data protocol.
 void DefaultClient.send(Message message)
           
 

com.jme3.network.message での Message の使用
 

Message を実装している com.jme3.network.message のクラス
 class ClientRegistrationMessage
          Client registration is a message that contains a unique ID.
 class CompressedMessage
          CompressedMessage is a base class for all messages that compress others.
 class DisconnectMessage
          Represents a disconnect message.
 class DiscoverHostMessage
          The discover host message.
 class GZIPCompressedMessage
          GZIPCompressedMessage is the class that you need to use should you want to compress a message using Gzip.
 class Message
          推奨されていません。 Message implementations should extend instead or use the for referencing.
 class StreamDataMessage
          Stream message contains the data for the stream.
 class StreamMessage
           
 class ZIPCompressedMessage
          Compress a message using this ZIPCompressedMessage class
 

com.jme3.network.rmi での Message の使用
 

Message を実装している com.jme3.network.rmi のクラス
 class RemoteMethodCallMessage
          Sent to a remote client to make a remote method invocation.
 class RemoteMethodReturnMessage
          Contains the return value for a remote method invocation, sent as a response to a RemoteMethodCallMessage with a non-zero invocationID.
 class RemoteObjectDefMessage
          Sent to expose RMI interfaces on the local client to other clients.
 

Message 型のパラメータを持つ com.jme3.network.rmi のメソッド
 void ObjectStore.ServerEventHandler.messageReceived(HostedConnection source, Message m)
           
 void ObjectStore.ClientEventHandler.messageReceived(java.lang.Object source, Message m)
           
 

com.jme3.network.sync での Message の使用
 

Message を実装している com.jme3.network.sync のクラス
 class SyncMessage
          推奨されていません。