ru.yandex.qatools.camelot.api.Storage Maven / Gradle / Ivy
package ru.yandex.qatools.camelot.api;
/**
* Storage, allowing the read/write operations
*
* @author Ilya Sadykov (mailto: [email protected])
*/
public interface Storage extends ReadonlyStorage, LockableStorage {
/**
* Putting the value into the key
*/
void put(String key, T value);
}