Package org.apache.giraph.utils

Examples of org.apache.giraph.utils.TaskIdsPermitsBarrier


   */
  public AllAggregatorServerData(Progressable progressable,
      ImmutableClassesGiraphConfiguration conf) {
    this.progressable = progressable;
    this.conf = conf;
    workersBarrier = new TaskIdsPermitsBarrier(progressable);
    masterBarrier = new TaskIdsPermitsBarrier(progressable);
  }
View Full Code Here


   */
  public OwnerAggregatorServerData(Progressable progressable,
      ImmutableClassesGiraphConfiguration conf) {
    this.progressable = progressable;
    this.conf = conf;
    workersBarrier = new TaskIdsPermitsBarrier(progressable);
  }
View Full Code Here

   */
  public AllAggregatorServerData(Progressable progressable,
      ImmutableClassesGiraphConfiguration conf) {
    this.progressable = progressable;
    this.conf = conf;
    workersBarrier = new TaskIdsPermitsBarrier(progressable);
    masterBarrier = new TaskIdsPermitsBarrier(progressable);
  }
View Full Code Here

   *
   * @param progressable Progressable used to report progress
   */
  public OwnerAggregatorServerData(Progressable progressable) {
    this.progressable = progressable;
    workersBarrier = new TaskIdsPermitsBarrier(progressable);
  }
View Full Code Here

TOP

Related Classes of org.apache.giraph.utils.TaskIdsPermitsBarrier

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.