]
Sebastian Łaskawiec reassigned ISPN-7357:
-----------------------------------------
Assignee: Katia Aresti (was: Sebastian Łaskawiec)
Implement ClusterExecutor support in CDI
----------------------------------------
Key: ISPN-7357
URL:
https://issues.jboss.org/browse/ISPN-7357
Project: Infinispan
Issue Type: Feature Request
Reporter: Sebastian Łaskawiec
Assignee: Katia Aresti
Currently CDI supports only {{DefaultExecutorService}}. We should add support also for
{{ClusterExecutor}}.
However there is a simple workaround for this:
{code}
@Inject
EmbeddedCacheManager ecm;
...
ecm.executor().submit(myRunnable);
{code}