Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-9893 API 2.0 (Umbrella issue)
  3. ISPN-9923

Provide a reactive key value store API

    XMLWordPrintable

Details

    • Sub-task
    • Resolution: Done
    • Major
    • 10.0.0.Beta4
    • None
    • API
    • None

    Description

      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();
      
        ...
      
      }
      

      Attachments

        Activity

          People

            karestig@redhat.com Katia Aresti
            karestig@redhat.com Katia Aresti
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: