io.nosqlbench.virtdata.core.bindings.Binder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package io.nosqlbench.virtdata.core.bindings;
/***
* A Binder is a type that knows how to return a result object given a long value
* to bind mapped values with.
* @param The resulting object type
*/
public interface Binder {
/**
* Bind values derived from a long to some object, returning an object type R
* @param value a long input value
* @return an R
*/
R bind(long value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy