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>
- See Also:
-
Field Summary
Fields inherited from interface org.apache.storm.kafka.spout.RecordTranslator
DEFAULT_STREAM
-
Constructor Summary
-
Method Summary
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
-
Constructor Details
-
OnlyValueRecordTranslator
public OnlyValueRecordTranslator()
-
-
Method Details
-
apply
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
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.
-