forked from woggioni/rbcs
12 lines
310 B
Java
12 lines
310 B
Java
package net.woggioni.gbcs.api;
|
|
|
|
import net.woggioni.gbcs.api.exception.ContentTooLargeException;
|
|
|
|
import java.nio.channels.ReadableByteChannel;
|
|
|
|
public interface Cache extends AutoCloseable {
|
|
ReadableByteChannel get(String key);
|
|
|
|
void put(String key, byte[] content) throws ContentTooLargeException;
|
|
}
|