Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-2287

Introduce DistributedTask abstraction enhancement for distributed executors

    XMLWordPrintable

Details

    • Enhancement
    • Resolution: Done
    • Major
    • 5.2.0.Beta1
    • 5.2.0.Alpha3
    • Clustered Executor
    • None

    Description

      As we have requirements to add timeout, pluggable fail over policies, topology aware target selection policies to distributed executors we have to create a new abstraction DistributedTask that users can submit to DistributedExecutorService. We will provide builder for DistributedTask, keep the existing four submit methods in DistributedExecutorService and add four new methods with DistributedTask abstraction in place of Callable. See below:

      interface DistributedExecutorService {
        … existing methods … 
          <T> List<Future<T>> submitEverywhere(DistributedTask<T> callable);
      }
      
      class DistributedTaskBuilder<T> {
         DistributedTaskBuilder<T> callable(Callable<T> callable);
         DistributedTaskBuilder<T> timeout(long t, TimeUnit tu);
         DistributedTaskBuilder<T> executionPolicy(DistributedExecutionPolicy p);
         DistributedTask<T> build();   
      }
      

      Attachments

        Issue Links

          Activity

            People

              vblagoje Vladimir Blagojevic (Inactive)
              vblagoje Vladimir Blagojevic (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: