Package org.apache.kafka.streams.state
Interface SessionBytesStoreSupplier
-
- All Superinterfaces:
StoreSupplier<SessionStore<org.apache.kafka.common.utils.Bytes,byte[]>>
public interface SessionBytesStoreSupplier extends StoreSupplier<SessionStore<org.apache.kafka.common.utils.Bytes,byte[]>>
A store supplier that can be used to create one or moreSessionStoreinstances of type <Byte, byte[]>. For any stores implementing theSessionStoreinterface, null value bytes are considered as "not exist". This means: 1. Null value bytes in put operations should be treated as delete. 2. Null value bytes should never be returned in range query results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longsegmentIntervalMs()The size of a segment, in milliseconds.-
Methods inherited from interface org.apache.kafka.streams.state.StoreSupplier
get, metricsScope, name
-
-