Uses of Interface
org.apache.druid.frame.processor.FrameProcessor
Packages that use FrameProcessor
-
Uses of FrameProcessor in org.apache.druid.frame.processor
Classes in org.apache.druid.frame.processor that implement FrameProcessorModifier and TypeClassDescriptionclassProcessor that reads up to "maxFrames" frames from some input channels and combines them into a batch.classProcessor that hash-partitions rows from any number of input channels, and writes partitioned frames to output channels.classProcessor that merges already-sorted inputChannels and writes a fully-sorted stream to a single outputChannel.classProcessor that merges frames from inputChannels into a single outputChannel.classFrame processor that simply runs aRunnable, once.Methods in org.apache.druid.frame.processor that return FrameProcessorModifier and TypeMethodDescription<T> FrameProcessor<T>FrameProcessorDecorator.decorate(FrameProcessor<T> processor) static <T> FrameProcessor<T>FrameProcessors.withBaggage(FrameProcessor<T> processor, Closeable baggage) Methods in org.apache.druid.frame.processor with parameters of type FrameProcessorModifier and TypeMethodDescription<T> FrameProcessor<T>FrameProcessorDecorator.decorate(FrameProcessor<T> processor) <T> com.google.common.util.concurrent.ListenableFuture<T>FrameProcessorExecutor.runFully(FrameProcessor<T> processor, String cancellationId) Runs a processor until it is done, and returns a future that resolves when execution is complete.static <T> FrameProcessor<T>FrameProcessors.withBaggage(FrameProcessor<T> processor, Closeable baggage) -
Uses of FrameProcessor in org.apache.druid.frame.processor.manager
Classes in org.apache.druid.frame.processor.manager with type parameters of type FrameProcessorModifier and TypeClassDescriptionclassSequenceProcessorManager<T,P extends FrameProcessor<T>> Processor manager based on aSequence.Methods in org.apache.druid.frame.processor.manager that return FrameProcessorMethod parameters in org.apache.druid.frame.processor.manager with type arguments of type FrameProcessorModifier and TypeMethodDescriptionstatic <T> ProcessorManager<T,Long> ProcessorManagers.of(Iterable<? extends FrameProcessor<T>> processors) Manager with processors derived from anIterable.static <T> ProcessorManager<T,Long> ProcessorManagers.of(Supplier<? extends FrameProcessor<T>> processors) Manager with a single processor derived from aSupplier.static <T> ProcessorManager<T,Long> ProcessorManagers.of(Sequence<? extends FrameProcessor<T>> processors) Manager with processors derived from aSequence.Constructors in org.apache.druid.frame.processor.manager with parameters of type FrameProcessorModifierConstructorDescriptionProcessorAndCallback(FrameProcessor<T> processor, Consumer<T> callback)