Class LongDeserializer
- java.lang.Object
- 
- org.apache.kafka.common.serialization.LongDeserializer
 
- 
- All Implemented Interfaces:
- Closeable,- AutoCloseable,- Deserializer<Long>
 
 public class LongDeserializer extends Object implements Deserializer<Long> 
- 
- 
Constructor SummaryConstructors Constructor Description LongDeserializer()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Longdeserialize(String topic, byte[] data)Deserialize a record value from a byte array into a value or object.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.kafka.common.serialization.Deserializerclose, configure, deserialize
 
- 
 
- 
- 
- 
Method Detail- 
deserializepublic Long deserialize(String topic, byte[] data) Description copied from interface:DeserializerDeserialize a record value from a byte array into a value or object.- Specified by:
- deserializein interface- Deserializer<Long>
- Parameters:
- topic- topic associated with the data
- data- serialized bytes; may be null; implementations are recommended to handle null by returning a value or null rather than throwing an exception.
- Returns:
- deserialized typed data; may be null
 
 
- 
 
-