Skip to content

Commit cf88f93

Browse files
committed
[TEST] Add a GPL snippet from mysql's CacheAdapter (GPL 2.0)
1 parent 57df09e commit cf88f93

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
package mondrian.spi;
3+
4+
import java.util.Set;
5+
6+
public interface CacheAdapter<K, V> {
7+
8+
V get(K key);
9+
10+
void put(K key, V value);
11+
12+
void invalidate(K key);
13+
14+
void invalidateAll(Set<K> keys);
15+
16+
void invalidateAll();
17+
18+
}

0 commit comments

Comments
 (0)