Examples of ProducerConsumerBatch


Examples of org.apache.drill.exec.physical.impl.producer.ProducerConsumerBatch

import java.util.List;

public class ProducerConsumerBatchCreator implements BatchCreator<ProducerConsumer> {
  @Override
  public RecordBatch getBatch(FragmentContext context, ProducerConsumer config, List<RecordBatch> children) throws ExecutionSetupException {
    return new ProducerConsumerBatch(config, context, Iterables.getOnlyElement(children));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.