Object/Trait

spinoco.fs2.kafka

KafkaClient

Related Docs: trait KafkaClient | package kafka

Permalink

object KafkaClient

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

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. def apply[F[_]](ensemble: Set[BrokerAddress], protocol: protocol.kafka.ProtocolVersion.Value, clientName: String, getNow: ⇒ LocalDateTime = LocalDateTime.now(), brokerWriteTimeout: Option[FiniteDuration] = Some(10.seconds), queryOffsetTimeout: FiniteDuration = 10.seconds, brokerReadMaxChunkSize: Int = 256 * 1024, getLeaderDelay: FiniteDuration = 3.seconds, brokerControlQueueBound: Int = 10 * 1000, brokerMetadataReadTimeout: Option[FiniteDuration] = Some(10.seconds), publishFailMaxAttempts: Int = 3)(implicit arg0: Logger[F], arg1: ConcurrentEffect[F], arg2: Timer[F], AG: AsynchronousChannelGroup): Stream[F, KafkaClient[F]]

    Permalink

    ensemble

    Ensemble to connect to. Must not be empty.

    protocol

    Protocol that will be used for requests. This shall be lowest common protocol supported by all brokers.

    clientName

    Name of the client. Name is suffixed for different type of connections to broker:

    • initial-meta-rq : Initial connection to query all available brokers
    • control : Control connection where publish requests and metadata requests are sent to
    • fetch: Connection where fetch requests are sent to.
    brokerWriteTimeout

    Timeout to complete single write (tcp) operation to broker before failing it.

    queryOffsetTimeout

    Timeout to query any partition offset.

    brokerReadMaxChunkSize

    Max size of chunk that is read in single tcp operation from broker

    getLeaderDelay

    How often re-query for leader if the leader is not known. Applies only for publish connections.

    brokerControlQueueBound

    Max number of unprocessed messages to keep for broker, before stopping accepting new messages for broker.

    brokerMetadataReadTimeout

    Maximum time we can take to read response from broker to a metadata request.

    publishFailMaxAttempts

    Max number of attempts when publish to a topic fails, this is usually caused by kafka leader change.

    See also

    spinoco.fs2.kafka.client

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. object impl

    Permalink
    Attributes
    protected[spinoco.fs2.kafka]
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped