final case class ActiveContractsServiceStreamsConfig(maxIdsPerIdPage: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageSize, maxPagesPerIdPagesBuffer: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageBufferSize, maxWorkingMemoryInBytesForIdPages: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageWorkingMemoryBytes, maxPayloadsPerPayloadsPage: Int = ActiveContractsServiceStreamsConfig.DefaultEventsPageSize, maxParallelIdCreateQueries: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdFetchingParallelism, maxParallelPayloadCreateQueries: Int = ActiveContractsServiceStreamsConfig.DefaultAcsContractFetchingParallelism, contractProcessingParallelism: Int = ActiveContractsServiceStreamsConfig.DefaultContractProcessingParallelism, maxIncompletePageSize: Int = 20) extends Product with Serializable
Ledger api active contracts service specific configurations
- maxIdsPerIdPage
Number of event ids to retrieve in a single query (a page of event ids).
- maxPagesPerIdPagesBuffer
Number of id pages to store in a buffer. There is a buffer for each decomposed filtering constraint.
- maxWorkingMemoryInBytesForIdPages
Memory for storing id pages across all id pages buffers. Per single stream.
- maxPayloadsPerPayloadsPage
Number of parallel queries that fetch payloads of create events. Per single stream.
- maxParallelIdCreateQueries
Number of parallel queries that fetch ids of create events. Per single stream.
- maxParallelPayloadCreateQueries
Number of event payloads to retrieve in a single query (a page of event payloads).
- contractProcessingParallelism
The parallelism for contract processing.
- maxIncompletePageSize
The maximum size of an incomplete page. Stream is chunked up this into groups of this size.
- Alphabetic
- By Inheritance
- ActiveContractsServiceStreamsConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ActiveContractsServiceStreamsConfig(maxIdsPerIdPage: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageSize, maxPagesPerIdPagesBuffer: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageBufferSize, maxWorkingMemoryInBytesForIdPages: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdPageWorkingMemoryBytes, maxPayloadsPerPayloadsPage: Int = ActiveContractsServiceStreamsConfig.DefaultEventsPageSize, maxParallelIdCreateQueries: Int = ActiveContractsServiceStreamsConfig.DefaultAcsIdFetchingParallelism, maxParallelPayloadCreateQueries: Int = ActiveContractsServiceStreamsConfig.DefaultAcsContractFetchingParallelism, contractProcessingParallelism: Int = ActiveContractsServiceStreamsConfig.DefaultContractProcessingParallelism, maxIncompletePageSize: Int = 20)
- maxIdsPerIdPage
Number of event ids to retrieve in a single query (a page of event ids).
- maxPagesPerIdPagesBuffer
Number of id pages to store in a buffer. There is a buffer for each decomposed filtering constraint.
- maxWorkingMemoryInBytesForIdPages
Memory for storing id pages across all id pages buffers. Per single stream.
- maxPayloadsPerPayloadsPage
Number of parallel queries that fetch payloads of create events. Per single stream.
- maxParallelIdCreateQueries
Number of parallel queries that fetch ids of create events. Per single stream.
- maxParallelPayloadCreateQueries
Number of event payloads to retrieve in a single query (a page of event payloads).
- contractProcessingParallelism
The parallelism for contract processing.
- maxIncompletePageSize
The maximum size of an incomplete page. Stream is chunked up this into groups of this size.
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() @IntrinsicCandidate()
- val contractProcessingParallelism: Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val maxIdsPerIdPage: Int
- val maxIncompletePageSize: Int
- val maxPagesPerIdPagesBuffer: Int
- val maxParallelIdCreateQueries: Int
- val maxParallelPayloadCreateQueries: Int
- val maxPayloadsPerPayloadsPage: Int
- val maxWorkingMemoryInBytesForIdPages: Int
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])