
com.basho.riak.client.api.commands.mapreduce.PhaseFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riak-client Show documentation
Show all versions of riak-client Show documentation
HttpClient-based client for Riak
package com.basho.riak.client.api.commands.mapreduce;
import com.basho.riak.client.core.query.functions.Function;
class PhaseFunction
{
private final Function function;
private final boolean keep;
public PhaseFunction(Function function, boolean keep)
{
this.function = function;
this.keep = keep;
}
public Function getFunction()
{
return function;
}
public boolean isKeep()
{
return keep;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy