Interface KeyValueStorage.Batch

All Superinterfaces:
AutoCloseable, Closeable
Enclosing interface:
KeyValueStorage

public static interface KeyValueStorage.Batch extends Closeable
Interface for a batch to be written in the storage.
  • Method Summary

    Modifier and Type
    Method
    Description
    default int
     
    void
     
    void
    deleteRange(byte[] beginKey, byte[] endKey)
     
    void
     
    void
    put(byte[] key, byte[] value)
     
    void
    remove(byte[] key)
     

    Methods inherited from interface java.io.Closeable

    close