final case class AckedReceiveBuffer[T <: HasSequenceNumber](lastDelivered: SeqNo = SeqNo(-1), cumulativeAck: SeqNo = SeqNo(-1), buf: SortedSet[T] = TreeSet.empty[T])(implicit seqOrdering: Ordering[T]) extends Product with Serializable
Implements an immutable receive buffer that buffers incoming messages until they can be safely delivered. This buffer works together with a pekko.remote.AckedSendBuffer on the sender() side.
- lastDelivered
Sequence number of the last message that has been delivered.
- cumulativeAck
The highest sequence number received so far.
- buf
Buffer of messages that are waiting for delivery
- Annotations
- @deprecated
- Deprecated
(Since version Akka 2.6.0) Classic remoting is deprecated, use Artery
- Source
- AckedDelivery.scala
- Alphabetic
- By Inheritance
- AckedReceiveBuffer
- Serializable
- Product
- Equals
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new AckedReceiveBuffer(lastDelivered: SeqNo = SeqNo(-1), cumulativeAck: SeqNo = SeqNo(-1), buf: SortedSet[T] = TreeSet.empty[T])(implicit seqOrdering: Ordering[T])
- lastDelivered
Sequence number of the last message that has been delivered.
- cumulativeAck
The highest sequence number received so far.
- buf
Buffer of messages that are waiting for delivery
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toany2stringadd[AckedReceiveBuffer[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (AckedReceiveBuffer[T], B)
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toArrowAssoc[AckedReceiveBuffer[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val buf: SortedSet[T]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- val cumulativeAck: SeqNo
- def ensuring(cond: (AckedReceiveBuffer[T]) => Boolean, msg: => Any): AckedReceiveBuffer[T]
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toEnsuring[AckedReceiveBuffer[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (AckedReceiveBuffer[T]) => Boolean): AckedReceiveBuffer[T]
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toEnsuring[AckedReceiveBuffer[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): AckedReceiveBuffer[T]
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toEnsuring[AckedReceiveBuffer[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): AckedReceiveBuffer[T]
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toEnsuring[AckedReceiveBuffer[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def extractDeliverable: (AckedReceiveBuffer[T], Seq[T], Ack)
Extract all messages that could be safely delivered, an updated ack to be sent to the sender(), and an updated buffer that has the messages removed that can be delivered.
Extract all messages that could be safely delivered, an updated ack to be sent to the sender(), and an updated buffer that has the messages removed that can be delivered.
- returns
Triplet of the updated buffer, messages that can be delivered and the updated acknowledgement.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lastDelivered: SeqNo
- def mergeFrom(that: AckedReceiveBuffer[T]): AckedReceiveBuffer[T]
Merges two receive buffers.
Merges two receive buffers. Merging preserves sequencing of messages, and drops all messages that has been safely acknowledged by any of the participating buffers. Also updates the expected sequence numbers.
- that
The receive buffer to merge with
- returns
The merged receive buffer.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def receive(arrivedMsg: T): AckedReceiveBuffer[T]
Puts a sequenced message in the receive buffer returning a new buffer.
Puts a sequenced message in the receive buffer returning a new buffer.
- arrivedMsg
message to be put into the buffer.
- returns
The updated buffer containing the message.
- implicit val seqOrdering: Ordering[T]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AckedReceiveBuffer → AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toStringFormat[AckedReceiveBuffer[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (AckedReceiveBuffer[T], B)
- Implicit
- This member is added by an implicit conversion from AckedReceiveBuffer[T] toArrowAssoc[AckedReceiveBuffer[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.