Interface OffsetManager.OffsetManagerEntry<T extends OffsetManager.OffsetManagerEntry<T>>
- All Superinterfaces:
Comparable<T>
- Enclosing class:
- OffsetManager<E extends OffsetManager.OffsetManagerEntry<E>>
public static interface OffsetManager.OffsetManagerEntry<T extends OffsetManager.OffsetManagerEntry<T>>
extends Comparable<T>
The definition of an entry in the OffsetManager.
-
Method Summary
Modifier and TypeMethodDescriptionfromProperties
(Map<String, Object> properties) Creates a new OffsetManagerEntry by wrapping the properties with the current implementation.default int
Gets the value of the named property as anint
.default long
Gets the value of the named property as along
Gets the OffsetManagerKey for this entry.Extracts the data from the entry in the correct format to return to Kafka.getProperty
(String key) Gets the value of the named property.default String
Gets the value of the named property as a String.void
Increments the record count.void
setProperty
(String key, Object value) Sets a key/value pair.Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
fromProperties
Creates a new OffsetManagerEntry by wrapping the properties with the current implementation. This method may throw a RuntimeException if requried properties are not defined in the map.- Parameters:
properties
- the properties to wrap. May benull
.- Returns:
- an OffsetManagerProperty
-
getProperties
Extracts the data from the entry in the correct format to return to Kafka.This method should make a copy of the internal data and return that to prevent any accidental updates to the internal data.
- Returns:
- the properties in a format to return to Kafka.
-
getProperty
Gets the value of the named property. The value returned from anull
key is implementation dependant.- Parameters:
key
- the property to retrieve.- Returns:
- the value associated with the property or @{code null} if not set.
- Throws:
NullPointerException
- if anull
key is not supported.
-
setProperty
Sets a key/value pair. Will overwrite any existing value. Implementations of OffsetManagerEntry may declare specific keys as restricted. These are generally keys that are managed internally by the OffsetManagerEntry and may not be set except through provided setter methods or the constructor.- Parameters:
key
- the key to set.value
- the value to set.- Throws:
IllegalArgumentException
- if the key is restricted.
-
getInt
Gets the value of the named property as anint
.- Parameters:
key
- the property to retrieve.- Returns:
- the value associated with the property or @{code null} if not set.
- Throws:
NullPointerException
- if anull
key is not supported.
-
getLong
Gets the value of the named property as along
- Parameters:
key
- the property to retrieve.- Returns:
- the value associated with the property or @{code null} if not set.
- Throws:
NullPointerException
- if anull
key is not supported.
-
getString
Gets the value of the named property as a String.- Parameters:
key
- the property to retrieve.- Returns:
- the value associated with the property or @{code null} if not set.
- Throws:
NullPointerException
- if anull
key is not supported.
-
getManagerKey
OffsetManager.OffsetManagerKey getManagerKey()Gets the OffsetManagerKey for this entry.The return value should be a copy of the internal structure or constructed in such a way that modification to the key values is not reflected in the OffsetManagerEntry.
- Returns:
- The offset manager key for this entry.
-
incrementRecordCount
void incrementRecordCount()Increments the record count.
-