[jboss-user] [jBPM] - Pass the result of a workitem to the next workitem with a workitemhandler

hansi007 do-not-reply at jboss.com
Wed May 30 11:03:23 EDT 2012


hansi007 [https://community.jboss.org/people/hansi007] created the discussion

"Pass the result of a workitem to the next workitem with a workitemhandler"

To view the discussion, visit: https://community.jboss.org/message/738803#738803

--------------------------------------------------------------
Is it possible to pass the results of a workitem to the next workitem with a workitemhandler:


public  class MyHandlerWorkItemTypeA implements WorkItemHandler{
 
       @Override
          public final void executeWorkItem(WorkItem wItem, WorkItemManager wItemManager) {
                     Map<String,Object> objectToPassToTheNextWorkItem = ...
                     wItemManager.completeWorkItem(wItem.getId(), objectToPassToTheNextWorkItem ); //That doesnt work  
          }
 
          @Override
          public final void abortWorkItem(WorkItem wItem, WorkItemManager wItemManager) {
 
          }      
}
 
public  class MyHandlerWorkItemTypeB implements WorkItemHandler{
 
       @Override
          public final void executeWorkItem(WorkItem wItem, WorkItemManager wItemManager) {
                     Map<String,Object> objectToGetFromThePreviousWorkItem = wItem.getResults(); //That doesnt work
          }
 
          @Override
          public final void abortWorkItem(WorkItem wItem, WorkItemManager wItemManager) {
 
          } 
}
 
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/738803#738803]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20120530/573d12bb/attachment.html 


More information about the jboss-user mailing list