Package com.github.ghetolay.jwamp.utils.TimeoutHashMap

Examples of com.github.ghetolay.jwamp.utils.TimeoutHashMap.TimeoutListener


public class TimeoutHashMapLoadTest {

  public static void main(String[] args) {
    final TimeoutHashMap map = new TimeoutHashMap();
   
    map.addListener(new TimeoutListener(){

      @Override
      public void timedOut(Object key, Object value) {
        System.out.println(key + " evicted");
      }
View Full Code Here

TOP

Related Classes of com.github.ghetolay.jwamp.utils.TimeoutHashMap.TimeoutListener

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.