Examples of onRemove()


Examples of io.fabric8.watcher.Processor.onRemove()

    private void unscan(final Path file) throws IOException {
        if (isMatchesFile(file)) {
            Processor processor = getProcessor();
            if (processor != null) {
                processor.onRemove(file);
            }
            lastModified = System.currentTimeMillis();
        } else {
            // lets find all the files that now no longer exist
            List<Path> files = new ArrayList<Path>(processedMap.keySet());
View Full Code Here

Examples of io.fabric8.watcher.Processor.onRemove()

                    LOGGER.debug("File has been deleted: " + path);
                    processedMap.remove(path);
                    if (isMatchesFile(path)) {
                        Processor processor = getProcessor();
                        if (processor != null) {
                            processor.onRemove(path);
                        }
                        fireListeners(path, ENTRY_DELETE);
                        lastModified = System.currentTimeMillis();
                    }
                }
View Full Code Here

Examples of nallar.tickthreading.minecraft.tickregion.TickRegion.onRemove()

    while ((tickRegion = removalQueue.poll()) != null) {
      if (tickRegion.isEmpty()) {
        synchronized (tickRegions) {
          if ((tickRegion instanceof EntityTickRegion ? entityCallables.remove(tickRegion.hashCode) : tileEntityCallables.remove(tickRegion.hashCode)) == tickRegion) {
            tickRegions.remove(tickRegion);
            tickRegion.onRemove();
          }
        }
      }
    }
  }
View Full Code Here

Examples of org.apache.wicket.behavior.Behavior.onRemove()

      Object obj = component.data_get(i);
      if (obj != null && obj instanceof Behavior)
      {
        final Behavior behavior = (Behavior)obj;

        behavior.onRemove(component);
      }
    }
  }

  private static class BehaviorIdList extends ArrayList<Behavior>
View Full Code Here

Examples of org.apache.wicket.behavior.Behavior.onRemove()

      Object obj = component.data_get(i);
      if (obj != null && obj instanceof Behavior)
      {
        final Behavior behavior = (Behavior)obj;

        behavior.onRemove(component);
      }
    }
  }

  private static class BehaviorIdList extends ArrayList<Behavior>
View Full Code Here

Examples of org.apache.wicket.behavior.Behavior.onRemove()

      Object obj = component.data_get(i);
      if (obj != null && obj instanceof Behavior)
      {
        final Behavior behavior = (Behavior)obj;

        behavior.onRemove(component);
      }
    }
  }

  private static class BehaviorIdList extends ArrayList<Behavior>
View Full Code Here

Examples of org.puremvc.java.multicore.interfaces.IMediator.onRemove()

      // remove the mediator from the map
      mediatorMap.remove(mediatorName);

      // alert the mediator that it has been removed
      mediator.onRemove();
    }
    return mediator;
  }

  /**
 
View Full Code Here

Examples of org.puremvc.java.multicore.interfaces.IProxy.onRemove()

   */
  public IProxy removeProxy(String proxyName) {
    IProxy proxy = (IProxy) this.proxyMap.get(proxyName);
    if(proxy != null){
      this.proxyMap.remove(proxyName);
      proxy.onRemove();
    }
    return proxy;
  }

  /**
 
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.