StreamOps

final implicit implicit class StreamOps[F[_], K, V](self: Stream[F, KafkaConsumer[F, K, V]])(implicit evidence$2: Functor[F])
class Object
trait Matchable
class Any

Value members

Concrete methods

def partitionedRecords: Stream[F, Stream[F, CommittableConsumerRecord[F, K, V]]]

Alias for partitionedStream. See KafkaConsume#partitionedStream

Alias for partitionedStream. See KafkaConsume#partitionedStream

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

See KafkaConsume#partitionedStream

See KafkaConsume#partitionedStream

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

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

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

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

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

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

def subscribe[G[_] : Reducible](topics: G[String]): Stream[F, KafkaConsumer[F, K, V]]

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

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

def subscribe(regex: Regex): Stream[F, KafkaConsumer[F, K, V]]
def subscribeTo(firstTopic: String, remainingTopics: String*): Stream[F, KafkaConsumer[F, K, V]]

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

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