Interface StreamsPartitioner
- 
- All Superinterfaces:
- Configurable
 - All Known Implementing Classes:
- DefaultStreamsPartitioner
 
 public interface StreamsPartitioner extends Configurable Partitioner Interface
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()This is called when partitioner is closed.intpartition(java.lang.String topic, java.lang.Object key, byte[] keyBytes, java.lang.Object value, byte[] valueBytes, int numPartitions)Compute the partition for the given record.- 
Methods inherited from interface org.apache.kafka.common.Configurableconfigure
 
- 
 
- 
- 
- 
Method Detail- 
partitionint partition(java.lang.String topic, java.lang.Object key, byte[] keyBytes, java.lang.Object value, byte[] valueBytes, int numPartitions)Compute the partition for the given record.- Parameters:
- topic- The topic name
- key- The key to partition on (or null if no key)
- keyBytes- The serialized key to partition on( or null if no key)
- value- The value to partition on or null
- valueBytes- The serialized value to partition on or null
- numPartitions- Number of partitions the topic has
 
 - 
closevoid close() This is called when partitioner is closed.
 
- 
 
-