Package appeng.api.networking

Examples of appeng.api.networking.IGridConnectionVisitor


    visitorIterationNumber = tracker;

    if ( g instanceof IGridConnectionVisitor )
    {
      LinkedList<IGridConnection> nextConn = new LinkedList<IGridConnection>();
      IGridConnectionVisitor gcv = (IGridConnectionVisitor) g;

      while (!nextRun.isEmpty())
      {
        while (!nextConn.isEmpty())
          gcv.visitConnection( nextConn.poll() );

        LinkedList<GridNode> thisRun = nextRun;
        nextRun = new LinkedList<GridNode>();

        for (GridNode n : thisRun)
View Full Code Here

TOP

Related Classes of appeng.api.networking.IGridConnectionVisitor

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.