Package lupos.distributed.query.operator.histogramsubmission

Examples of lupos.distributed.query.operator.histogramsubmission.QueryClientRootWithHistogramSubmission


  @Override
  public Root createRoot() {
    if(this.histogramExecutor == null) {
      return new QueryClientRoot(this.dataset);
    } else {
      return new QueryClientRootWithHistogramSubmission(this.dataset, this.histogramExecutor);
    }
  }
View Full Code Here


    this.histogramExecutor = histogramExecutor;
  }

  @Override
  public Root createRoot(final Dataset dataset) {
    return new QueryClientRootWithHistogramSubmission(dataset, this.histogramExecutor);
  }
View Full Code Here

TOP

Related Classes of lupos.distributed.query.operator.histogramsubmission.QueryClientRootWithHistogramSubmission

Copyright © 2018 www.massapicom. 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.