Interface KvFileStorage


public interface KvFileStorage
  • Method Details

    • list

    • read

      byte[] read(String name)
    • readInputStream

      InputStream readInputStream(String name)
    • readParallel

      io.datarouter.scanner.Scanner<byte[]> readParallel(String name, long fromInclusive, long toExclusive, io.datarouter.scanner.Threads threads, ByteLength chunkSize)
    • write

      void write(String name, byte[] value)
    • writeParallel

      void writeParallel(String name, io.datarouter.scanner.Scanner<List<byte[]>> parts, io.datarouter.scanner.Threads threads)
    • delete

      void delete(String name)