Package appeng.me.cache

Examples of appeng.me.cache.CraftingGridCache$ActiveCpuIterator


  public void postCraftingStatusChange(IAEItemStack diff)
  {
    if ( getGrid() == null )
      return;

    CraftingGridCache sg = getGrid().getCache( ICraftingGrid.class );

    if ( sg.interestManager.containsKey( diff ) )
    {
      Collection<CraftingWatcher> list = sg.interestManager.get( diff );
View Full Code Here


  private void submitLink(ICraftingLink myLastLink2)
  {
    if ( getGrid() != null )
    {
      CraftingGridCache cc = getGrid().getCache( ICraftingGrid.class );
      cc.addLink( (CraftingLink) myLastLink2 );
    }
  }
View Full Code Here

TOP

Related Classes of appeng.me.cache.CraftingGridCache$ActiveCpuIterator

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.