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 operator, so if it doesn't
delegate to any shared instance it doesn't have to be thread-safe.
- Source
- RemoteInstrument.scala
- Alphabetic
- By Inheritance
- RemoteInstrument
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new RemoteInstrument()
Abstract Value Members
- abstract def identifier: Byte
Instrument identifier.
Instrument identifier.
MUST be >=1 and <32.
Values between 1 and 7 are reserved for Akka internal use.
- 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 anyRemoteInstrument
metadata. IfserializationTimingEnabled
returns true, thentime
will be the total time it took to deserialize all data in the message in nanoseconds, otherwise it is 0. - 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
(exceptmessage
andbuffer
)!The
size
is the total serialized size in bytes of the complete message including akka specific headers and anyRemoteInstrument
metadata. IfserializationTimingEnabled
returns true, thentime
will be the total time it took to serialize all data in the message in nanoseconds, otherwise it is 0. - 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.
- 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
(exceptmessage
andbuffer
)!