Package org.apache.storm.flux.examples
Class OnlyValueRecordTranslator<K,V>
- java.lang.Object
-
- org.apache.storm.flux.examples.OnlyValueRecordTranslator<K,V>
-
- All Implemented Interfaces:
Serializable
,Func<org.apache.kafka.clients.consumer.ConsumerRecord<K,V>,List<Object>>
,RecordTranslator<K,V>
public class OnlyValueRecordTranslator<K,V> extends Object implements RecordTranslator<K,V>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.storm.kafka.spout.RecordTranslator
DEFAULT_STREAM
-
-
Constructor Summary
Constructors Constructor Description OnlyValueRecordTranslator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>
apply(org.apache.kafka.clients.consumer.ConsumerRecord<K,V> record)
Translate the ConsumerRecord into a list of objects that can be emitted.Fields
getFieldsFor(String stream)
Get the fields associated with a stream.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.storm.kafka.spout.RecordTranslator
streams
-
-
-
-
Method Detail
-
apply
public List<Object> apply(org.apache.kafka.clients.consumer.ConsumerRecord<K,V> record)
Description copied from interface:RecordTranslator
Translate the ConsumerRecord into a list of objects that can be emitted.- Specified by:
apply
in interfaceFunc<K,V>
- Specified by:
apply
in interfaceRecordTranslator<K,V>
- Parameters:
record
- the record to translate- Returns:
- the objects in the tuple. Return a
KafkaTuple
if you want to route the tuple to a non-default stream. Returnnull
to discard an invalidConsumerRecord
ifKafkaSpoutConfig.Builder.setEmitNullTuples(boolean)
is set tofalse
.
-
getFieldsFor
public Fields getFieldsFor(String stream)
Description copied from interface:RecordTranslator
Get the fields associated with a stream. The streams passed in are returned by theRecordTranslator.streams()
method.- Specified by:
getFieldsFor
in interfaceRecordTranslator<K,V>
- Parameters:
stream
- the stream the fields are for- Returns:
- the fields for that stream.
-
-