Class CombineWithContext.CombineFnWithContext<InputT,AccumT,OutputT>
- All Implemented Interfaces:
Serializable,CombineFnBase.GlobalCombineFn<InputT,,AccumT, OutputT> CombineWithContext.RequiresContextInternal,HasDisplayData
- Direct Known Subclasses:
CombineFns.ComposedCombineFnWithContext
- Enclosing class:
CombineWithContext
PipelineOptions and side inputs through
CombineWithContext.Context.
See the equivalent Combine.CombineFn for details about combine functions.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract AccumTaddInput(AccumT accumulator, InputT input, CombineWithContext.Context c) Adds the given input value to the given accumulator, returning the new accumulator value.apply(Iterable<? extends InputT> inputs, CombineWithContext.Context c) Applies thisCombineFnWithContextto a collection of input values to produce a combined output value.compact(AccumT accumulator, CombineWithContext.Context c) Returns an accumulator that represents the same logical value as the input accumulator, but may have a more compact representation.abstract AccumTReturns a new, mutable accumulator value, representing the accumulation of zero input values.Returns the default value when there are no values added to the accumulator.abstract OutputTextractOutput(AccumT accumulator, CombineWithContext.Context c) Returns the output value that is the result of combining all the input values represented by the given accumulator.TypeVariable<?> Returns theTypeVariableofAccumT.getAccumulatorCoder(CoderRegistry registry, Coder<InputT> inputCoder) Returns theCoderto use for accumulatorAccumTvalues, or null if it is not able to be inferred.getDefaultOutputCoder(CoderRegistry registry, Coder<InputT> inputCoder) Returns theCoderto use by default for outputOutputTvalues, or null if it is not able to be inferred.Returns the error message for not supported default values in Combine.globally().TypeVariable<?> Returns theTypeVariableofInputT.TypeVariable<?> Returns theTypeVariableofOutputT.abstract AccumTmergeAccumulators(Iterable<AccumT> accumulators, CombineWithContext.Context c) Returns an accumulator representing the accumulation of all the input values accumulated in the merging accumulators.voidpopulateDisplayData(DisplayData.Builder builder) Register display data for the given transform or component.
-
Constructor Details
-
CombineFnWithContext
public CombineFnWithContext()
-
-
Method Details
-
createAccumulator
Returns a new, mutable accumulator value, representing the accumulation of zero input values.It is equivalent to
Combine.CombineFn.createAccumulator(), but it has additional access toCombineWithContext.Context. -
addInput
Adds the given input value to the given accumulator, returning the new accumulator value.It is equivalent to
Combine.CombineFn.addInput(AccumT, InputT), but it has additional access toCombineWithContext.Context. -
mergeAccumulators
public abstract AccumT mergeAccumulators(Iterable<AccumT> accumulators, CombineWithContext.Context c) Returns an accumulator representing the accumulation of all the input values accumulated in the merging accumulators.It is equivalent to
Combine.CombineFn.mergeAccumulators(java.lang.Iterable<AccumT>), but it has additional access toCombineWithContext.Context. -
extractOutput
Returns the output value that is the result of combining all the input values represented by the given accumulator.It is equivalent to
Combine.CombineFn.extractOutput(AccumT), but it has additional access toCombineWithContext.Context. -
compact
Returns an accumulator that represents the same logical value as the input accumulator, but may have a more compact representation.It is equivalent to
Combine.CombineFn.compact(AccumT), but it has additional access toCombineWithContext.Context. -
apply
Applies thisCombineFnWithContextto a collection of input values to produce a combined output value. -
defaultValue
Description copied from interface:CombineFnBase.GlobalCombineFnReturns the default value when there are no values added to the accumulator.- Specified by:
defaultValuein interfaceCombineFnBase.GlobalCombineFn<InputT,AccumT, OutputT>
-
getAccumulatorCoder
public Coder<AccumT> getAccumulatorCoder(CoderRegistry registry, Coder<InputT> inputCoder) throws CannotProvideCoderException Description copied from interface:CombineFnBase.GlobalCombineFnReturns theCoderto use for accumulatorAccumTvalues, or null if it is not able to be inferred.By default, uses the knowledge of the
Coderbeing used forInputTvalues and the enclosingPipeline'sCoderRegistryto try to infer the Coder forAccumTvalues.This is the Coder used to send data through a communication-intensive shuffle step, so a compact and efficient representation may have significant performance benefits.
- Specified by:
getAccumulatorCoderin interfaceCombineFnBase.GlobalCombineFn<InputT,AccumT, OutputT> - Throws:
CannotProvideCoderException
-
getDefaultOutputCoder
public Coder<OutputT> getDefaultOutputCoder(CoderRegistry registry, Coder<InputT> inputCoder) throws CannotProvideCoderException Description copied from interface:CombineFnBase.GlobalCombineFnReturns theCoderto use by default for outputOutputTvalues, or null if it is not able to be inferred.By default, uses the knowledge of the
Coderbeing used for inputInputTvalues and the enclosingPipeline'sCoderRegistryto try to infer the Coder forOutputTvalues.- Specified by:
getDefaultOutputCoderin interfaceCombineFnBase.GlobalCombineFn<InputT,AccumT, OutputT> - Throws:
CannotProvideCoderException
-
getIncompatibleGlobalWindowErrorMessage
Description copied from interface:CombineFnBase.GlobalCombineFnReturns the error message for not supported default values in Combine.globally().- Specified by:
getIncompatibleGlobalWindowErrorMessagein interfaceCombineFnBase.GlobalCombineFn<InputT,AccumT, OutputT>
-
getInputTVariable
Returns theTypeVariableofInputT. -
getAccumTVariable
Returns theTypeVariableofAccumT. -
getOutputTVariable
Returns theTypeVariableofOutputT. -
populateDisplayData
Register display data for the given transform or component.populateDisplayData(DisplayData.Builder)is invoked by Pipeline runners to collect display data viaDisplayData.from(HasDisplayData). Implementations may callsuper.populateDisplayData(builder)in order to register display data in the current namespace, but should otherwise usesubcomponent.populateDisplayData(builder)to use the namespace of the subcomponent.By default, does not register any display data. Implementors may override this method to provide their own display data.
- Specified by:
populateDisplayDatain interfaceHasDisplayData- Parameters:
builder- The builder to populate with display data.- See Also:
-