tibco-timer
This trigger provides your flogo application the ability to schedule a flow via scheduling service
Installation
flogo add trigger github.com/TIBCOSoftware/flogo-contrib/trigger/timer
Schema
Outputs and Endpoint:
{
"output": [
{
"name": "params",
"type": "params"
},
{
"name": "content",
"type": "object"
}
],
"endpoint": {
"settings": [
{
"name": "repeating",
"type": "string"
},
{
"name": "notImmediate",
"type": "string"
},
{
"name": "startDate",
"type": "string"
},
{
"name": "hours",
"type": "string"
},
{
"name": "minutes",
"type": "string"
},
{
"name": "seconds",
"type": "string"
}
]
}
}
Example Configurations
Triggers are configured via the triggers.json of your application. The following are some example configuration of the Timer Trigger.
Configure the Trigger to run a flow immediately
{
"triggers": [
{
"name": "flogo-timer",
"settings": {
},
"endpoints": [
{
"actionType": "flow",
"actionURI": "embedded://myflow",
"settings": {
"repeating": "false"
}
}
]
}
]
}
Only once at schedule time
Configure the Trigger to run a flow at a certain date/time. "startDate" settings format = "mm/dd/yyyy, hours:minutes:seconds"
{
"triggers": [
{
"name": "flogo-rest",
"settings": {
"port": "8080"
},
"endpoints": [
{
"actionType": "flow",
"actionURI": "embedded://myflow",
"settings": {
"repeating": "false",
"startDate" : "05/01/2016, 12:25:01"
}
}
]
}
]
}
Repeating
Configure the Trigger to run a flow repeating every hours|minutes|seconds. If "notImmediate" set to true, the trigger will not fire immediately. In this case the first execution will occur in 24 hours. If set to false the first execuction will will occur immediately.
{
"triggers": [
{
"name": "flogo-rest",
"settings": {
"port": "8080"
},
"endpoints": [
{
"actionType": "flow",
"actionURI": "embedded://myflow",
"settings": {
"repeating": "true",
"notImmediate": "true",
"hours": "24"
}
}
]
}
]
}
Repeating with start date
Configure the Trigger to run a flow at a certain date/time and repeating every hours|minutes|seconds
{
"triggers": [
{
"name": "flogo-rest",
"settings": {
"port": "8080"
},
"endpoints": [
{
"actionType": "flow",
"actionURI": "embedded://myflow",
"settings": {
"repeating": "true",
"startDate" : "05/01/2016, 12:25:01",
"hours": "64"
}
}
]
}
]
}