All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hmsonline.storm.cassandra.bolt.mapper.RangeQueryTupleMapper Maven / Gradle / Ivy

package com.hmsonline.storm.cassandra.bolt.mapper;

import backtype.storm.tuple.Tuple;

public interface RangeQueryTupleMapper extends TupleMapper {

    /**
     * 
     * @param tuple
     * @return return value of column for start range
     */
    public C mapToStartkey(Tuple tuple);

    /**
     * 
     * @param tuple
     * @return return value of column for end range
     */
    public C mapToEndkey(Tuple tuple);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy