com.emc.mongoose.storage.mock.api.ObjectContainerMock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongoose-storage-mock Show documentation
Show all versions of mongoose-storage-mock Show documentation
Mongoose is a high-load storage performance testing tool
The newest version!
package com.emc.mongoose.storage.mock.api;
import com.emc.mongoose.common.collection.Listable;
import java.io.Closeable;
import java.util.Collection;
/**
Created on 19.07.16.
*/
public interface ObjectContainerMock
extends Closeable, Listable {
T get (final String key);
T put(final String key, final T value);
T remove(final String key);
int size();
Collection values();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy