Package logisticspipes.routing.order.IOrderInfoProvider

Examples of logisticspipes.routing.order.IOrderInfoProvider.RequestType


  public IOrderInfoProvider readOrder() throws IOException {
    ItemIdentifierStack stack = this.readItemIdentifierStack();
    int routerId = this.readInt();
    boolean isFinished = this.readBoolean();
    boolean inProgress = this.readBoolean();
    RequestType type = this.readEnum(RequestType.class);
    List<Float> list = this.readList(new IReadListObject<Float>() {
      @Override
      public Float readObject(LPDataInputStream data) throws IOException {
        return data.readFloat();
      }});
View Full Code Here

TOP

Related Classes of logisticspipes.routing.order.IOrderInfoProvider.RequestType

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.