Class RemoteInstrument
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.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract byteInstrument identifier.abstract voidremoteMessageReceived(ActorRef recipient, Object message, ActorRef sender, int size, long time) Called when the message has been deserialized.abstract voidremoteMessageSent(ActorRef recipient, Object message, ActorRef sender, int size, long time) Called right before putting the message onto the wire.abstract voidremoteReadMetadata(ActorRef recipient, Object message, ActorRef sender, ByteBuffer buffer) Called while deserializing the message once a message (containing a metadata field designated for this instrument) is found.abstract voidremoteWriteMetadata(ActorRef recipient, Object message, ActorRef sender, ByteBuffer buffer) Called while serializing the message.booleanShould the serialization be timed? Otherwise times are always 0.
- 
Constructor Details- 
RemoteInstrumentpublic RemoteInstrument()
 
- 
- 
Method Details- 
identifierpublic abstract byte identifier()Instrument identifier.MUST be >=1 and <32. Values between 1 and 7 are reserved for Pekko internal use. 
- 
remoteMessageReceivedpublic abstract void remoteMessageReceived(ActorRef recipient, Object message, ActorRef sender, int size, long time) Called when the message has been deserialized.The sizeis the total serialized size in bytes of the complete message including Pekko specific headers and anyRemoteInstrumentmetadata. IfserializationTimingEnabledreturns true, thentimewill be the total time it took to deserialize all data in the message in nanoseconds, otherwise it is 0.
- 
remoteMessageSentpublic abstract void remoteMessageSent(ActorRef recipient, Object message, ActorRef sender, int size, long time) Called right before putting the message onto the wire. Parameters MAY benull(exceptmessageandbuffer)!The sizeis the total serialized size in bytes of the complete message including Pekko specific headers and anyRemoteInstrumentmetadata. IfserializationTimingEnabledreturns true, thentimewill be the total time it took to serialize all data in the message in nanoseconds, otherwise it is 0.
- 
remoteReadMetadatapublic abstract void remoteReadMetadata(ActorRef recipient, Object message, ActorRef sender, ByteBuffer buffer) Called while deserializing the message once a message (containing a metadata field designated for this instrument) is found.
- 
remoteWriteMetadatapublic abstract void remoteWriteMetadata(ActorRef recipient, Object message, ActorRef sender, ByteBuffer buffer) Called while serializing the message. Parameters MAY benull(exceptmessageandbuffer)!
- 
serializationTimingEnabledpublic boolean serializationTimingEnabled()Should the serialization be timed? Otherwise times are always 0.
 
-