public class WordCountLookupMapper extends Object implements RedisLookupMapper
| Constructor and Description | 
|---|
| WordCountLookupMapper() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | declareOutputFields(OutputFieldsDeclarer declarer)declare what are the fields that this code will output. | 
| RedisDataTypeDescription | getDataTypeDescription()Returns descriptor which defines data type. | 
| String | getKeyFromTuple(ITuple tuple)Extracts key from tuple. | 
| String | getValueFromTuple(ITuple tuple)Extracts value from tuple. | 
| List<Values> | toTuple(ITuple input,
       Object value)Converts return value from Redis to a list of storm values that can be emitted. | 
public List<Values> toTuple(ITuple input, Object value)
RedisLookupMapperConverts return value from Redis to a list of storm values that can be emitted.
toTuple in interface RedisLookupMapperinput - the input tuple.value - Redis query response value. Can be String, Boolean, Long regarding of data type.public void declareOutputFields(OutputFieldsDeclarer declarer)
RedisLookupMapperdeclare what are the fields that this code will output.
declareOutputFields in interface RedisLookupMapperdeclarer - OutputFieldsDeclarerpublic RedisDataTypeDescription getDataTypeDescription()
RedisMapperReturns descriptor which defines data type.
getDataTypeDescription in interface RedisMapperpublic String getKeyFromTuple(ITuple tuple)
TupleMapperExtracts key from tuple.
getKeyFromTuple in interface TupleMappertuple - source tuplepublic String getValueFromTuple(ITuple tuple)
TupleMapperExtracts value from tuple.
getValueFromTuple in interface TupleMappertuple - source tupleCopyright © 2019 The Apache Software Foundation. All rights reserved.