Object/Class

fs2.kafka

ProducerMessage

Related Docs: class ProducerMessage | package kafka

Permalink

object ProducerMessage

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

Type Members

  1. final class MultipleApplyBuilders[F[_]] extends AnyVal

    Permalink

    Enables creating ProducerMessages with the following syntax.

    Enables creating ProducerMessages with the following syntax.

    ProducerMessage.multiple[F].of(records, passthrough)
    
    ProducerMessage.multiple[F].of(records)
  2. final class PassthroughApplyBuilders[F[_]] extends AnyVal

    Permalink

    Enables creating ProducerMessages with the following syntax.

    Enables creating ProducerMessages with the following syntax.

    ProducerMessage.passthrough[F].of(passthrough)
    
    ProducerMessage.passthrough[F].withKeyAndValue[K, V].of(passthrough)
  3. final class PassthroughKeyAndValueApplyBuilders[F[_], K, V] extends AnyVal

    Permalink

    Enables creating ProducerMessages with the following syntax.

    Enables creating ProducerMessages with the following syntax.

    ProducerMessage.passthrough[F].withKeyAndValue[K, V].of(passthrough)
  4. final class SingleApplyBuilders[F[_]] extends AnyVal

    Permalink

    Enables creating ProducerMessages with the following syntax.

    Enables creating ProducerMessages with the following syntax.

    ProducerMessage.single[F].of(record, passthrough)
    
    ProducerMessage.single[F].of(record)

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 clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  12. def multiple[F[_]](implicit F: Traverse[F]): MultipleApplyBuilders[F]

    Permalink

    Creates a new ProducerMessage for producing zero or more ProducerRecords, then emitting a ProducerResult with the results and either specified or Unit passthrough.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred.

    Creates a new ProducerMessage for producing zero or more ProducerRecords, then emitting a ProducerResult with the results and either specified or Unit passthrough.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred. This is useful when the context cannot otherwise be inferred correctly.

    This function enables the following syntax.

    ProducerMessage.multiple[F].of(records, passthrough)
    
    ProducerMessage.multiple[F].of(records)
  13. def multiple[F[_], K, V](records: F[ProducerRecord[K, V]])(implicit F: Traverse[F]): ProducerMessage[F, K, V, Unit]

    Permalink

    Creates a new ProducerMessage for producing zero or more ProducerRecordss, then emitting a ProducerResult with the results and Unit passthrough value.

  14. def multiple[F[_], K, V, P](records: F[ProducerRecord[K, V]], passthrough: P)(implicit F: Traverse[F]): ProducerMessage[F, K, V, P]

    Permalink

    Creates a new ProducerMessage for producing zero or more ProducerRecordss, then emitting a ProducerResult with the results and specified passthrough value.

  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 passthrough[F[_]](implicit F: Traverse[F]): PassthroughApplyBuilders[F]

    Permalink

    Creates a new ProducerMessage for producing exactly zero ProducerRecords, then emitting a ProducerResult with the specified passthrough value.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred.

    Creates a new ProducerMessage for producing exactly zero ProducerRecords, then emitting a ProducerResult with the specified passthrough value.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred. This is useful when the context cannot otherwise be inferred correctly. If needed, the key and value types can be explicitly specified by also using withKeyAndValue.

    This function enables the following syntax.

    ProducerMessage.passthrough[F].of(passthrough)
    
    ProducerMessage.passthrough[F].withKeyAndValue[K, V].of(passthrough)
  19. def passthrough[F[_], K, V, P](passthrough: P)(implicit F: Traverse[F], M: MonoidK[F]): ProducerMessage[F, K, V, P]

    Permalink

    Creates a new ProducerMessage for producing exactly zero ProducerRecords, emitting a ProducerResult with the specified passthrough value.

  20. implicit def producerMessageShow[F[_], K, V, P](implicit K: Show[K], V: Show[V], P: Show[P]): Show[ProducerMessage[F, K, V, P]]

    Permalink
  21. def single[F[_]](implicit F: Traverse[F]): SingleApplyBuilders[F]

    Permalink

    Creates a new ProducerMessage for producing exactly one ProducerRecord, then emitting a ProducerResult with the result and either specified or Unit passthrough.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred.

    Creates a new ProducerMessage for producing exactly one ProducerRecord, then emitting a ProducerResult with the result and either specified or Unit passthrough.

    This version allows you to explicitly specify the context F[_], while the key, value, and passthrough types can be inferred. This is useful when the context cannot otherwise be inferred correctly.

    This function enables the following syntax.

    ProducerMessage.single[F].of(record, passthrough)
    
    ProducerMessage.single[F].of(record)
  22. def single[F[_], K, V](record: ProducerRecord[K, V])(implicit F: Traverse[F], A: Applicative[F]): ProducerMessage[F, K, V, Unit]

    Permalink

    Creates a new ProducerMessage for producing exactly one ProducerRecord, then emitting a ProducerResult with the result and Unit passthrough value.

  23. def single[F[_], K, V, P](record: ProducerRecord[K, V], passthrough: P)(implicit F: Traverse[F], A: Applicative[F]): ProducerMessage[F, K, V, P]

    Permalink

    Creates a new ProducerMessage for producing exactly one ProducerRecord, then emitting a ProducerResult with the result and specified passthrough value.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped