Package io.aiven.kafka.connect.common
Interface NativeInfo<K,N>
- Type Parameters:
N
- The native object type.K
- the native key type
public interface NativeInfo<K,N>
Information about the Native object.
-
Method Summary
Modifier and TypeMethodDescriptionGets the native item.long
Gets the number of bytes in the input stream extracted from the native object.Gets the native key
-
Method Details
-
getNativeItem
N getNativeItem()Gets the native item.- Returns:
- The native item.
-
getNativeKey
K getNativeKey()Gets the native key- Returns:
- The Native key.
-
getNativeItemSize
long getNativeItemSize()Gets the number of bytes in the input stream extracted from the native object.- Returns:
- The number of bytes in the input stream extracted from the native object.
-