Packages

c

akka.remote.artery

RemoteInstrument

abstract class RemoteInstrument extends AnyRef

INTERNAL API

Part of the monitoring SPI which allows attaching metadata to outbound remote messages, and reading in metadata from incoming messages.

Multiple instruments are automatically handled, however they MUST NOT overlap in their idenfitiers.

Instances of RemoteInstrument are created from configuration. A new instance of RemoteInstrument will be created for each encoder and decoder. It's only called from the stage, so if it doesn't delegate to any shared instance it doesn't have to be thread-safe.

Source
RemoteInstrument.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RemoteInstrument
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RemoteInstrument()

Abstract Value Members

  1. abstract def identifier: Byte

    Instrument identifier.

    Instrument identifier.

    MUST be >=1 and <32.

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

  2. abstract def remoteMessageReceived(recipient: ActorRef, message: AnyRef, sender: ActorRef, size: Int, time: Long): Unit

    Called when the message has been deserialized.

    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.

  3. abstract def remoteMessageSent(recipient: ActorRef, message: AnyRef, sender: ActorRef, size: Int, time: Long): Unit

    Called right before putting the message onto the wire.

    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.

  4. abstract def remoteReadMetadata(recipient: ActorRef, message: AnyRef, sender: ActorRef, buffer: ByteBuffer): Unit

    Called while deserializing the message once a message (containing a metadata field designated for this instrument) is found.

  5. abstract def remoteWriteMetadata(recipient: ActorRef, message: AnyRef, sender: ActorRef, buffer: ByteBuffer): Unit

    Called while serializing the message.

    Called while serializing the message. Parameters MAY be null (except message and buffer)!

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to any2stringadd[RemoteInstrument] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RemoteInstrument, B)
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to ArrowAssoc[RemoteInstrument] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def ensuring(cond: (RemoteInstrument) ⇒ Boolean, msg: ⇒ Any): RemoteInstrument
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to Ensuring[RemoteInstrument] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (RemoteInstrument) ⇒ Boolean): RemoteInstrument
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to Ensuring[RemoteInstrument] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): RemoteInstrument
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to Ensuring[RemoteInstrument] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): RemoteInstrument
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to Ensuring[RemoteInstrument] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to StringFormat[RemoteInstrument] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  22. def serializationTimingEnabled: Boolean

    Should the serialization be timed? Otherwise times are always 0.

  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def [B](y: B): (RemoteInstrument, B)
    Implicit
    This member is added by an implicit conversion from RemoteInstrument to ArrowAssoc[RemoteInstrument] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from RemoteInstrument to any2stringadd[RemoteInstrument]

Inherited by implicit conversion StringFormat from RemoteInstrument to StringFormat[RemoteInstrument]

Inherited by implicit conversion Ensuring from RemoteInstrument to Ensuring[RemoteInstrument]

Inherited by implicit conversion ArrowAssoc from RemoteInstrument to ArrowAssoc[RemoteInstrument]

Ungrouped