ai.grakn.redismock.commands.RedisOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redis-mock Show documentation
Show all versions of redis-mock Show documentation
In memory Redis mock for testing
package ai.grakn.redismock.commands;
import ai.grakn.redismock.Slice;
/**
* Represents a Redis Operation which can be executed against {@link ai.grakn.redismock.RedisBase}
*/
public interface RedisOperation {
Slice execute();
}