-
Sub-task
-
Resolution: Done
-
Major
-
None
-
None
-
DataGrid Sprint #29, DataGrid Sprint #30, DataGrid Sprint #31, DataGrid Sprint #32, DataGrid Sprint #33, DataGrid Sprint #34
Create a first * ReactiveKeyValueStore* api based in reactive streams standard. The example API below is not complete, is just an example
public interface ReactiveKeyValueStore<K, V> { CompletionStage<V> get(K key); CompletionStage<Void> save(K key, V value); CompletionStage<Void> remove(K key); CompletionStage<Void> putMany(Publisher<Entry<K, V>> pairs); Publisher<Entry<K, V>> entries(); ... }