io.nosqlbench.virtdata.library.basics.shared.stateful.SaveLong 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.library.basics.shared.stateful;
import io.nosqlbench.virtdata.api.annotations.Categories;
import io.nosqlbench.virtdata.api.annotations.Category;
import io.nosqlbench.virtdata.api.annotations.Example;
import io.nosqlbench.virtdata.api.annotations.ThreadSafeMapper;
import io.nosqlbench.virtdata.library.basics.core.threadstate.SharedState;
import java.util.function.Function;
import java.util.function.LongUnaryOperator;
/**
* Save a value to a named thread-local variable, where the variable
* name is fixed or a generated variable name from a provided function.
* Note that the input type is not that suitable for constructing names,
* so this is more likely to be used in an indirect naming pattern like
* SaveLong(Load('id'))
*/
@Categories(Category.state)
@ThreadSafeMapper
public class SaveLong implements LongUnaryOperator {
private final String name;
private final Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy