[infinispan-issues] [JBoss JIRA] (ISPN-2432) enhance distributed executor service with submit(Task, Address...)
Dan Berindei (JIRA)
issues at jboss.org
Mon Dec 1 02:32:40 EST 2014
[ https://issues.jboss.org/browse/ISPN-2432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Dan Berindei resolved ISPN-2432.
--------------------------------
Fix Version/s: 5.2.0.Final
Resolution: Duplicate Issue
Implemented with ISPN-1974
> 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
> Priority: Minor
> Fix For: 5.2.0.Final
>
>
> 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 :
> {code:java}
> @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");
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.8#6338)
More information about the infinispan-issues
mailing list