Last active
December 30, 2015 20:49
-
-
Save bibryam/7883463 to your computer and use it in GitHub Desktop.
AWS SWF Decider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from("aws-swf://workflow?domainName=demo&workflowList=demo-flow&version=1.0&eventName=processWorkflows") | |
| .log("Received a workflow task ${body}") | |
| .filter(header(SWFConstants.ACTION).isEqualTo(SWFConstants.EXECUTE_ACTION)) | |
| .to("aws-swf://activity?domainName=demo&activityList=demo-activity&version=1.0&eventName=processActivities"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment