Class/Object

px.kinesis.stream.consumer.checkpoint

CheckpointTracker

Related Docs: object CheckpointTracker | package checkpoint

Permalink

class CheckpointTracker extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CheckpointTracker
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CheckpointTracker(workerId: String, maxBufferSize: Int, maxDurationInSeconds: Int, completionTimeout: Timeout, timeout: Timeout)(implicit system: ActorSystem, ec: ExecutionContext)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def checkpoint(shardId: String, checkpointer: RecordProcessorCheckpointer): Future[Done.type]

    Permalink

    Forces checkpointing to occur for current highest checkpointable sequence number

  6. def checkpointIfNeeded(shardId: String, checkpointer: RecordProcessorCheckpointer): Future[Done.type]

    Permalink

    Checkpoint only if conditions are met (enough time elapsed or buffer is full)

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. var isShutdown: Boolean

    Permalink
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. def process(shardId: String, sequence: ExtendedSequenceNumber): Future[Done.type]

    Permalink

    Mark a sequence number as processed

    Mark a sequence number as processed

    This sequence number is checkpointable if all sequence numbers before it are marked processed If a processed sequence number has no sequence numbers before it in the tracked set, it is considered checkpointable

  19. def shutdown(): Unit

    Permalink

    Shuts down tracker and all its shard trackers

  20. def shutdown(shardId: String): Future[Done]

    Permalink

    Shuts down the tracker for a particular shard

  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def track(shardId: String, sequences: Iterable[ExtendedSequenceNumber]): Future[Done.type]

    Permalink

    Track a set of sequence numbers Note: process should be called on a member of this set

  24. val tracker: ActorRef

    Permalink
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def watchCompletion(shardId: String): Future[Done.type]

    Permalink

    Returns a future which resolves successfully when all in flight (tracked) messages are marked processed Fails if the underlying actor is shut down before the timeout elapses

Inherited from AnyRef

Inherited from Any

Ungrouped