Packages

trait Checkpointer[F[_], C] extends Monoid[C]

Checkpoints messages to the input stream so that we don't read them again. A single checkpointer might be responsible for multiple incoming messages.

F

An effect

C

Source-specific type describing the outstading messages

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Checkpointer
  2. Monoid
  3. Semigroup
  4. Serializable
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def ack(c: C): F[Unit]

    Trigger checkpointing.

    Trigger checkpointing. Must be called only when all message processing is complete

  2. abstract def combine(x: C, y: C): C
    Definition Classes
    Semigroup
  3. abstract def empty: C
    Definition Classes
    Monoid
  4. abstract def nack(c: C): F[Unit]

    Nack un-processed messages.

    Nack un-processed messages. Used during shutdown

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  6. def combineAll(as: IterableOnce[C]): C
    Definition Classes
    Monoid
  7. def combineAllOption(as: IterableOnce[C]): Option[C]
    Definition Classes
    Monoid → Semigroup
  8. def combineN(a: C, n: Int): C
    Definition Classes
    Monoid → Semigroup
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  13. def intercalate(middle: C): Semigroup[C]
    Definition Classes
    Semigroup
  14. def isEmpty(a: C)(implicit ev: Eq[C]): Boolean
    Definition Classes
    Monoid
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  19. def repeatedCombineN(a: C, n: Int): C
    Attributes
    protected[this]
    Definition Classes
    Semigroup
  20. def reverse: Monoid[C]
    Definition Classes
    Monoid → Semigroup
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Monoid[C]

Inherited from Semigroup[C]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped