Package com.jme3.network
Interface Message
- All Known Implementing Classes:
AbstractMessage
,ChannelInfoMessage
,ClientRegistrationMessage
,CompressedMessage
,DisconnectMessage
,GZIPCompressedMessage
,RemoteMethodCallMessage
,RemoteMethodReturnMessage
,RemoteObjectDefMessage
,RpcCallMessage
,RpcResponseMessage
,SerializerRegistrationsMessage
,ZIPCompressedMessage
public interface Message
Interface implemented by all network messages.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates which way an outgoing message should be sent or which way an incoming message was sent.setReliable
(boolean f) Sets this message to 'reliable' or not and returns this message.
-
Method Details
-
setReliable
Sets this message to 'reliable' or not and returns this message. -
isReliable
boolean isReliable()Indicates which way an outgoing message should be sent or which way an incoming message was sent.
-