Interface DataStore<V extends Serializable>

  • Type Parameters:
    V - serializable type of the mapped value
    All Known Implementing Classes:
    AbstractDataStore

    public interface DataStore<V extends Serializable>
    Stores and manages serializable data of a specific type, where the key is a string and the value is a Serializable object.

    null keys or values are not allowed. Implementation should be thread-safe.

    Since:
    1.16
    Author:
    Yaniv Inbar