final case class FS2Config(queueSize: Int, commitMaxChunk: Int, commitMaxWait: FiniteDuration, commitMaxRetries: Int, commitRetryInterval: FiniteDuration) extends Product with Serializable
Configuration for the FS2 implementation
- queueSize
Size of the underlying queue for the FS2 stream. If the queue fills up, backpressure on the processors will occur. Default 100
- commitMaxChunk
Max records to be received in the commitRecords Pipe before a commit is run. Default is 1000
- commitMaxWait
Max duration to wait in commitRecords Pipe before a commit is run. Default is 10 seconds
- commitMaxRetries
Max number of retries for a commit operation
- commitRetryInterval
Interval to wait between commit retries
- Source
- KCLConsumerFS2.scala
- Alphabetic
- By Inheritance
- FS2Config
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FS2Config(queueSize: Int, commitMaxChunk: Int, commitMaxWait: FiniteDuration, commitMaxRetries: Int, commitRetryInterval: FiniteDuration)
- queueSize
Size of the underlying queue for the FS2 stream. If the queue fills up, backpressure on the processors will occur. Default 100
- commitMaxChunk
Max records to be received in the commitRecords Pipe before a commit is run. Default is 1000
- commitMaxWait
Max duration to wait in commitRecords Pipe before a commit is run. Default is 10 seconds
- commitMaxRetries
Max number of retries for a commit operation
- commitRetryInterval
Interval to wait between commit retries
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val commitMaxChunk: Int
- val commitMaxRetries: Int
- val commitMaxWait: FiniteDuration
- val commitRetryInterval: FiniteDuration
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val queueSize: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()