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 Details

    • 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 message
      messageNonce - the client's ID for this message
      Since:
      0.9.9
    • ClientMessage

      public ClientMessage(Hash toDestHash, Payload payload)
      For inbound (from remote dest)
      Since:
      0.9.9
  • Method Details

    • 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