Examples of sharesInventoryWith()


Examples of logisticspipes.pipes.basic.CoreRoutedPipe.sharesInventoryWith()

    for(Pair<IProvideItems, List<IFilter>> provider : getProviders(this.target.getRouter(), this.getStackItem())) {
      if(this.isDone()) {
        break;
      }
      if(provider.getValue1() == null || provider.getValue1().getRouter() == null || provider.getValue1().getRouter().getPipe() == null) continue;
      if(!thisPipe.sharesInventoryWith(provider.getValue1().getRouter().getPipe())) {
        provider.getValue1().canProvide(this, root.getAllPromissesFor(provider.getValue1(), this.getStackItem()), provider.getValue2());
      }
    }
    return this.isDone();
  }
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.