blob: 3e55f412e2bc9c7d05f39c45b3f972e853d97edb [file] [log] [blame]
package accord.primitives;
import accord.api.Key;
/**
* Something that can be found within the cluster AND found on disk, queried and returned
*/
public interface Seekable extends Routable
{
Key asKey();
Range asRange();
Seekable slice(Range range);
}