Interface BlobStore

All Superinterfaces:
AutoCloseable, Closeable

public interface BlobStore extends Closeable
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(Long key, byte[] value)
     
    void
    delete(Long key)
     
    boolean
    exists(Long key)
     
    byte[]
    get(Long key)
     
    List<byte[]>
     
    byte[]
    update(Long key, byte[] value)
     

    Methods inherited from interface java.io.Closeable

    close
  • Method Details

    • list

      List<byte[]> list()
    • exists

      boolean exists(Long key)
    • get

      byte[] get(Long key)
    • add

      void add(Long key, byte[] value)
    • update

      byte[] update(Long key, byte[] value)
    • delete

      void delete(Long key)