trait BatchAggregatorUS[A, B] extends AnyRef
This batch aggregator exposes a BatchAggregatorUS.run method that allows for batching com.digitalasset.canton.lifecycle.FutureUnlessShutdown computations, defined by a BatchAggregatorUS.ProcessorUS.
Note: it is required that getter
and batchGetter
do not throw an exception. If they do, the
number of in-flight requests could fail to be decremented which would result in degraded
performance or even prevent calls to the getters.
- Alphabetic
- By Inheritance
- BatchAggregatorUS
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def run(item: A)(implicit ec: ExecutionContext, traceContext: TraceContext, callerCloseContext: CloseContext): FutureUnlessShutdown[B]
Runs the processor of this aggregator for the given item, possibly batching several items.
Runs the processor of this aggregator for the given item, possibly batching several items.
- returns
The com.digitalasset.canton.lifecycle.FutureUnlessShutdown completes with the processor's response to this item, after the batch of items has finished. If the processor fails with an exception for some item in a batch, the exception may propagate to the com.digitalasset.canton.lifecycle.FutureUnlessShutdowns of all items in the batch.
Concrete 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]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @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
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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])