io.nosqlbench.virtdata.api.Binder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-curves4 Show documentation
Show all versions of virtdata-lib-curves4 Show documentation
Statistical sampling library for use in virtdata libraries, based
on apache commons math 4
package io.nosqlbench.virtdata.api;
/***
* 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);
}