Interface KeyedDecodableStream<K,V>
- Type Parameters:
K
- The key data type for a record in this streamV
- The value data type for a record in this stream
public interface KeyedDecodableStream<K,V>
Represents a keyed data stream on the Decodable platform.
-
Method Details
-
add
Adds the given keyed stream record to this stream. -
takeOne
Future<KeyedStreamRecord<K,V>> takeOne()Retrieves one keyed record from this stream. -
take
Retrievesn
keyed records from this stream.
-