Packages

implicit final class StreamOps[F[_], K, V] extends AnyRef

Source
KafkaConsumer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StreamOps(self: Stream[F, KafkaConsumer[F, K, V]])(implicit arg0: Functor[F])

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]) @native()
  6. def consumeChunk(processor: (Chunk[ConsumerRecord[K, V]]) => F[CommitNow])(implicit F: Concurrent[F]): F[Nothing]

    Consume from all assigned partitions concurrently, processing the messages in Chunks.

    Consume from all assigned partitions concurrently, processing the messages in Chunks. See KafkaConsumeChunk#consumeChunk

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. def partitionedRecords: Stream[F, Stream[F, CommittableConsumerRecord[F, K, V]]]

    Alias for partitionedStream.

    Alias for partitionedStream. See KafkaConsume#partitionedStream

  17. def partitionedStream: Stream[F, Stream[F, CommittableConsumerRecord[F, K, V]]]

    See KafkaConsume#partitionedStream

  18. def records: Stream[F, CommittableConsumerRecord[F, K, V]]

    A Stream of records from the allocated KafkaConsumer.

    A Stream of records from the allocated KafkaConsumer. Alias for stream. See KafkaConsume#stream

  19. def stream: Stream[F, CommittableConsumerRecord[F, K, V]]

    A Stream of records from the allocated KafkaConsumer.

    A Stream of records from the allocated KafkaConsumer. See KafkaConsume#stream

  20. def subscribe(regex: Regex): Stream[F, KafkaConsumer[F, K, V]]
  21. def subscribe[G[_]](topics: G[String])(implicit arg0: Reducible[G]): Stream[F, KafkaConsumer[F, K, V]]

    Subscribes a consumer to the specified topics within the Stream context.

    Subscribes a consumer to the specified topics within the Stream context. See KafkaSubscription#subscribe.

  22. def subscribeTo(firstTopic: String, remainingTopics: String*): Stream[F, KafkaConsumer[F, K, V]]

    Subscribes a consumer to the specified topics within the Stream context.

    Subscribes a consumer to the specified topics within the Stream context. See KafkaSubscription#subscribe.

  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped