[infinispan-issues] [JBoss JIRA] (ISPN-2432) enhance distributed executor service with submit(Task, Address...)

Mathieu Lachance (JIRA) jira-events at lists.jboss.org
Mon Oct 22 17:29:01 EDT 2012


Mathieu Lachance created ISPN-2432:
--------------------------------------

             Summary: enhance distributed executor service with submit(Task, Address...)
                 Key: ISPN-2432
                 URL: https://issues.jboss.org/browse/ISPN-2432
             Project: Infinispan
          Issue Type: Feature Request
          Components: Distributed Execution and Map/Reduce
    Affects Versions: 5.2.0.Beta2
            Reporter: Mathieu Lachance
            Assignee: Vladimir Blagojevic


as discussed with vladimir on user forum it would be nice to add to the DistributedExecutorService interface (or Advanced interface) a capability to submit a task to a particular address(es).

my use case was to propagate a cdi event to all other members to the cluster as the local dispatch was already ensured with @Observes. 

basically I wanted to do the following :

@Inject Event<MyEventThatIWantToPropagateThatExtendsBaseEvent> myEvent;
myEvent.fire(new MyEvent());

@Inject BeanManager beanManager;
onBaseEvent(@Observes final BaseEvent event){
  List<Address> addresses = getAllOtherNodes();
  DistributedExecutorService.submit(new Callable<Void>({
    public Void run() throws Exception{
      beanManager.fireEvent(event);
    }
  }), addresses);
}

onMyEvent(@Observes final MyEvent event){
  System.out.println("this will be executed locally and on all other members of the cluster");
}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the infinispan-issues mailing list