Class PekkoPduProtobufCodec$
- java.lang.Object
-
- org.apache.pekko.remote.transport.PekkoPduProtobufCodec$
-
- All Implemented Interfaces:
PekkoPduCodec
public class PekkoPduProtobufCodec$ extends java.lang.Object implements PekkoPduCodec
INTERNAL API
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.pekko.remote.transport.PekkoPduCodec
PekkoPduCodec.Associate, PekkoPduCodec.Associate$, PekkoPduCodec.Disassociate, PekkoPduCodec.Disassociate$, PekkoPduCodec.Heartbeat$, PekkoPduCodec.Message, PekkoPduCodec.Message$, PekkoPduCodec.Payload, PekkoPduCodec.Payload$, PekkoPduCodec.PekkoPdu
-
-
Field Summary
Fields Modifier and Type Field Description static PekkoPduProtobufCodec$MODULE$Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description PekkoPduProtobufCodec$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ByteStringconstructAssociate(HandshakeInfo info)ByteStringconstructDisassociate(AssociationHandle.DisassociateInfo info)ByteStringconstructHeartbeat()ByteStringconstructMessage(Address localAddress, ActorRef recipient, WireFormats.SerializedMessage serializedMessage, <any> senderOption, scala.Option<SeqNo> seqOption, scala.Option<Ack> ackOption)scala.Option<SeqNo>constructMessage$default$5()scala.Option<Ack>constructMessage$default$6()ByteStringconstructPayload(ByteString payload)ByteStringconstructPureAck(Ack ack)scala.Tuple2<scala.Option<Ack>,scala.Option<PekkoPduCodec.Message>>decodeMessage(ByteString raw, org.apache.pekko.remote.RemoteActorRefProvider provider, Address localAddress)PekkoPduCodec.PekkoPdudecodePdu(ByteString raw)Returns anpekko.remote.transport.PekkoPduCodec.PekkoPduinstance that represents the PDU contained in the raw ByteString.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.pekko.remote.transport.PekkoPduCodec
encodePdu
-
-
-
-
Field Detail
-
MODULE$
public static final PekkoPduProtobufCodec$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
constructMessage
public ByteString constructMessage(Address localAddress, ActorRef recipient, WireFormats.SerializedMessage serializedMessage, <any> senderOption, scala.Option<SeqNo> seqOption, scala.Option<Ack> ackOption)
- Specified by:
constructMessagein interfacePekkoPduCodec
-
constructMessage$default$5
public scala.Option<SeqNo> constructMessage$default$5()
- Specified by:
constructMessage$default$5in interfacePekkoPduCodec
-
constructMessage$default$6
public scala.Option<Ack> constructMessage$default$6()
- Specified by:
constructMessage$default$6in interfacePekkoPduCodec
-
constructPureAck
public ByteString constructPureAck(Ack ack)
- Specified by:
constructPureAckin interfacePekkoPduCodec
-
constructPayload
public ByteString constructPayload(ByteString payload)
- Specified by:
constructPayloadin interfacePekkoPduCodec
-
constructAssociate
public ByteString constructAssociate(HandshakeInfo info)
- Specified by:
constructAssociatein interfacePekkoPduCodec
-
constructDisassociate
public ByteString constructDisassociate(AssociationHandle.DisassociateInfo info)
- Specified by:
constructDisassociatein interfacePekkoPduCodec
-
constructHeartbeat
public ByteString constructHeartbeat()
- Specified by:
constructHeartbeatin interfacePekkoPduCodec
-
decodePdu
public PekkoPduCodec.PekkoPdu decodePdu(ByteString raw)
Description copied from interface:PekkoPduCodecReturns anpekko.remote.transport.PekkoPduCodec.PekkoPduinstance that represents the PDU contained in the raw ByteString.- Specified by:
decodePduin interfacePekkoPduCodec- Parameters:
raw- Encoded raw byte representation of a Pekko PDU- Returns:
- Case class representation of the decoded PDU that can be used in a match statement
-
decodeMessage
public scala.Tuple2<scala.Option<Ack>,scala.Option<PekkoPduCodec.Message>> decodeMessage(ByteString raw, org.apache.pekko.remote.RemoteActorRefProvider provider, Address localAddress)
- Specified by:
decodeMessagein interfacePekkoPduCodec
-
-