1 24 package org.objectweb.jalisto.se.api.cache; 25 26 import org.objectweb.jalisto.se.impl.trace.Trace; 27 28 import java.io.PrintStream ; 29 import java.util.Map ; 30 31 public interface JalistoCache extends Map { 32 33 void init(int size, String name, double clearPourcent); 34 35 void setTrace(Trace trace); 36 37 void setMaxSize(int size); 38 39 int getMaxSize(); 40 41 void print(PrintStream out); 42 } 43 | Popular Tags |