Class RemoteInstrument


  • public abstract class RemoteInstrument
    extends java.lang.Object
    Instrument identifier.

    MUST be >=1 and <32.

    Values between 1 and 7 are reserved for Akka internal use.

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract byte identifier()  
      abstract void remoteMessageReceived​(ActorRef recipient, java.lang.Object message, ActorRef sender, int size, long time)
      Called when the message has been deserialized.
      abstract void remoteMessageSent​(ActorRef recipient, java.lang.Object message, ActorRef sender, int size, long time)
      Called right before putting the message onto the wire.
      abstract void remoteReadMetadata​(ActorRef recipient, java.lang.Object message, ActorRef sender, java.nio.ByteBuffer buffer)
      Called while deserializing the message once a message (containing a metadata field designated for this instrument) is found.
      abstract void remoteWriteMetadata​(ActorRef recipient, java.lang.Object message, ActorRef sender, java.nio.ByteBuffer buffer)
      Called while serializing the message.
      boolean serializationTimingEnabled()
      Should the serialization be timed? Otherwise times are always 0.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RemoteInstrument

        public RemoteInstrument()
    • Method Detail

      • identifier

        public abstract byte identifier()
      • remoteMessageReceived

        public abstract void remoteMessageReceived​(ActorRef recipient,
                                                   java.lang.Object message,
                                                   ActorRef sender,
                                                   int size,
                                                   long time)
        Called when the message has been deserialized.

        The size is the total serialized size in bytes of the complete message including akka specific headers and any RemoteInstrument metadata. If serializationTimingEnabled returns true, then time will be the total time it took to deserialize all data in the message in nanoseconds, otherwise it is 0.

        Parameters:
        recipient - (undocumented)
        message - (undocumented)
        sender - (undocumented)
        size - (undocumented)
        time - (undocumented)
      • remoteMessageSent

        public abstract void remoteMessageSent​(ActorRef recipient,
                                               java.lang.Object message,
                                               ActorRef sender,
                                               int size,
                                               long time)
        Called right before putting the message onto the wire. Parameters MAY be null (except message and buffer)!

        The size is the total serialized size in bytes of the complete message including akka specific headers and any RemoteInstrument metadata. If serializationTimingEnabled returns true, then time will be the total time it took to serialize all data in the message in nanoseconds, otherwise it is 0.

        Parameters:
        recipient - (undocumented)
        message - (undocumented)
        sender - (undocumented)
        size - (undocumented)
        time - (undocumented)
      • remoteReadMetadata

        public abstract void remoteReadMetadata​(ActorRef recipient,
                                                java.lang.Object message,
                                                ActorRef sender,
                                                java.nio.ByteBuffer buffer)
        Called while deserializing the message once a message (containing a metadata field designated for this instrument) is found.
        Parameters:
        recipient - (undocumented)
        message - (undocumented)
        sender - (undocumented)
        buffer - (undocumented)
      • remoteWriteMetadata

        public abstract void remoteWriteMetadata​(ActorRef recipient,
                                                 java.lang.Object message,
                                                 ActorRef sender,
                                                 java.nio.ByteBuffer buffer)
        Called while serializing the message. Parameters MAY be null (except message and buffer)!
        Parameters:
        recipient - (undocumented)
        message - (undocumented)
        sender - (undocumented)
        buffer - (undocumented)
      • serializationTimingEnabled

        public boolean serializationTimingEnabled()
        Should the serialization be timed? Otherwise times are always 0.
        Returns:
        (undocumented)