2026-03-17 13:31:18 -07:00

14 lines
264 B
Java

package net.sourceforge.jtds.jdbc.cache;
import java.util.Collection;
public interface StatementCache {
Object get(String str);
Collection getObsoleteHandles(Collection collection);
void put(String str, Object obj);
void remove(String str);
}