...
Action steps can be classified into as definition and execute phase.
Action Definition
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<Action name="NextRfidAction" documentation="Read next RFID tag"> <Workflow Limit="1" Live="1" Timeout="0"> <Task name="Main" while="true"> <Event name="Argument" as="ActionArgument"/> <Invoke name="ReadId" waitFor="Argument" get="[%:Event.Argument.URL.Value:%]" StopChar="0x0D" ReadTimeout="-1" WriteTimeout="-1" RepeatDelay="1"/> <Output name="Result" as="ActionResult"> <Value> <RFID>[%:[%:@Output:%]Invoke.ReadId.Message.Value:%]</RFID> </Value> </Output> </Task> </Workflow> </Action> |
...