Packages

abstract class TestSourceProvider[Offset, Envelope] extends SourceProvider[Offset, Envelope] with VerifiableSourceProvider[Offset, Envelope]

Source
TestSourceProvider.scala
Linear Supertypes
VerifiableSourceProvider[Offset, Envelope], SourceProvider[Offset, Envelope], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestSourceProvider
  2. VerifiableSourceProvider
  3. SourceProvider
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new TestSourceProvider()

Abstract Value Members

  1. abstract def extractCreationTime(envelope: Envelope): Long

    Timestamp (in millis-since-epoch) of the instant when the envelope was created.

    Timestamp (in millis-since-epoch) of the instant when the envelope was created. The meaning of "when the envelope was created" is implementation specific and could be an instant on the producer machine, or the instant when the database persisted the envelope, or other.

    Definition Classes
    SourceProvider
  2. abstract def extractOffset(envelope: Envelope): Offset
    Definition Classes
    SourceProvider
  3. abstract def source(offset: Supplier[CompletionStage[Optional[Offset]]]): CompletionStage[Source[Envelope, NotUsed]]
    Definition Classes
    SourceProvider
  4. abstract def verifyOffset(offset: Offset): OffsetVerification
    Definition Classes
    VerifiableSourceProvider
  5. abstract def withAllowCompletion(allowCompletion: Boolean): TestSourceProvider[Offset, Envelope]

    Allow the sourceEvents Source to complete or stay open indefinitely.

  6. abstract def withExtractCreationTimeFunction(extractCreationTimeFn: Function[Envelope, Long]): TestSourceProvider[Offset, Envelope]

    A user-defined function to extract the event creation time from an envelope.

  7. abstract def withOffsetVerification(offsetVerificationFn: Function[Offset, OffsetVerification]): TestSourceProvider[Offset, Envelope]

    A user-defined function to verify offsets.

  8. abstract def withStartSourceFrom(startSourceFromFn: BiFunction[Offset, Offset, Boolean]): TestSourceProvider[Offset, Envelope]

    A user-defined function to compare the last offset returned by the offset store with the offset in the source to filter out previously processed offsets.

    A user-defined function to compare the last offset returned by the offset store with the offset in the source to filter out previously processed offsets.

    First parameter: Last offset processed. Second parameter this envelope's offset from sourceEvents.