Package net.i2p.router
Class ClientMessage
- java.lang.Object
-
- net.i2p.router.ClientMessage
-
public class ClientMessage extends Object
Wrap a message either destined for a local client or received from one. Note that an outbound message may get routed as an inbound message for local-local communication.- Author:
- jrandom
-
-
Constructor Summary
Constructors Constructor Description ClientMessage(Destination toDest, Payload payload, SessionConfig config, Destination fromDest, MessageId msgID, long messageNonce, long expiration, int flags)
For outbound (locally originated)ClientMessage(Hash toDestHash, Payload payload)
For inbound (from remote dest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Destination
getDestination()
Retrieve the destination to which this message is directed.Hash
getDestinationHash()
Retrieve the destination to which this message is directed.long
getExpiration()
Expiration requested by the client that sent the message.int
getFlags()
Flags requested by the client that sent the message.Destination
getFromDestination()
Valid for outbound; null for inbound.MessageId
getMessageId()
Valid for outbound; null for inbound.long
getMessageNonce()
Valid for outbound; 0 for inbound.Payload
getPayload()
Retrieve the payload of the message.SessionConfig
getSenderConfig()
Retrieve the session config of the client that sent the message.
-
-
-
Constructor Detail
-
ClientMessage
public ClientMessage(Destination toDest, Payload payload, SessionConfig config, Destination fromDest, MessageId msgID, long messageNonce, long expiration, int flags)
For outbound (locally originated)- Parameters:
msgID
- the router's ID for this messagemessageNonce
- the client's ID for this message- Since:
- 0.9.9
-
-
Method Detail
-
getPayload
public Payload getPayload()
Retrieve the payload of the message. All ClientMessage objects should have a payload
-
getDestination
public Destination getDestination()
Retrieve the destination to which this message is directed. Valid for outbound; null for inbound. If null, use getDestinationHash()
-
getFromDestination
public Destination getFromDestination()
Valid for outbound; null for inbound.
-
getDestinationHash
public Hash getDestinationHash()
Retrieve the destination to which this message is directed. Valid for inbound; null for outbound. If null, use getDestination()
-
getMessageId
public MessageId getMessageId()
Valid for outbound; null for inbound.
-
getMessageNonce
public long getMessageNonce()
Valid for outbound; 0 for inbound.- Since:
- 0.9.14
-
getSenderConfig
public SessionConfig getSenderConfig()
Retrieve the session config of the client that sent the message. This will only be available if the client was local
-
getExpiration
public long getExpiration()
Expiration requested by the client that sent the message. This will only be available for locally originated messages.
-
getFlags
public int getFlags()
Flags requested by the client that sent the message. This will only be available for locally originated messages.- Since:
- 0.8.4
-
-