The interface representing a threshold to be used in ThresholdBatcher. Thresholds do not need to
be thread-safe if they are only used inside ThresholdBatcher.
Type Parameter
Name
Description
E
Methods
accumulate(E e)
publicabstractvoidaccumulate(Ee)
Presents the element to the threshold for the attribute of interest to be accumulated.
Any calls into this function from ThresholdBatcher will be under a lock.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["The webpage provides documentation for various versions of `BatchingThreshold`, a Java interface within the Google API Client Library for Java (gax)."],["The most recent version available is 2.63.1, which is linked as the \"latest\" version, with all other previous versions linked too."],["`BatchingThreshold` is designed for use in `ThresholdBatcher` to define a limit for batching operations, with no need for thread safety."],["The `BatchingThreshold` interface contains three methods: `accumulate(E e)` for accumulating elements, `copyWithZeroedValue()` for resetting the threshold, and `isThresholdReached()` to check if the limit has been reached."],["Each method call to `accumulate(E e)`, `copyWithZeroedValue()`, and `isThresholdReached()` from `ThresholdBatcher` will be under a lock."]]],[]]