本文整理汇总了TypeScript中simple-swf/build/src/tasks.ActivityTask.getWorkflowInfo方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ActivityTask.getWorkflowInfo方法的具体用法?TypeScript ActivityTask.getWorkflowInfo怎么用?TypeScript ActivityTask.getWorkflowInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simple-swf/build/src/tasks.ActivityTask
的用法示例。
在下文中一共展示了ActivityTask.getWorkflowInfo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: buildTaskMeta
buildTaskMeta(task: ActivityTask, meta?: Object): Object {
let taskMeta = {
task: { type: task.activityName(), id: task.id },
workflow: task.getWorkflowInfo()
}
return _.defaults(taskMeta || {}, meta || {})
}
示例2: onTaskHeartbeat
onTaskHeartbeat(task: ActivityTask, execution: Activity, status: TaskStatus) {
const taskInfo = {type: task.activityName(), id: execution.id}
this.ftlConfig.notifier.sendInfo('taskHeartbeat', {
task: taskInfo,
control: task.getControl(),
workflow: task.getWorkflowInfo(),
originWorkflow: task.getOriginWorkflow(),
status
})
this.logInfo('task heartbeat status', this.buildTaskMeta(task, { status: status }))
}
示例3: onTaskError
onTaskError(task: ActivityTask, execution: Activity, err: Error) {
const taskInfo = {type: task.activityName(), id: execution.id}
this.logInfo('unexpected task error', this.buildTaskMeta(task, { err }))
this.ftlConfig.notifier.sendError('taskError', {
task: taskInfo,
control: task.getControl(),
workflow: task.getWorkflowInfo(),
originWorkflow: task.getOriginWorkflow(),
err
})
this.emit('error', err, execution)
}
示例4: onTaskCompleted
onTaskCompleted(task: ActivityTask, execution: Activity, details: TaskStatus) {
const taskInfo = {type: task.activityName(), id: execution.id}
this.ftlConfig.metricReporter.increment('activity.completed')
this.ftlConfig.metricReporter.increment(`activity.byHandler.${task.activityName()}.completed`)
this.ftlConfig.notifier.sendInfo('taskFinished', {
task: taskInfo,
control: task.getControl(),
workflow: task.getWorkflowInfo(),
originWorkflow: task.getOriginWorkflow(),
details
})
this.logInfo('task completed', this.buildTaskMeta(task, { details: details }))
}
示例5: onTaskCanceled
onTaskCanceled(task: ActivityTask, execution: Activity, reason: StopReasons) {
const taskInfo = {type: task.activityName(), id: execution.id}
this.ftlConfig.metricReporter.increment('activity.canceled')
this.ftlConfig.metricReporter.increment(`activity.byHandler.${task.activityName()}.canceled`)
delete this.activityTimers[task.id]
this.ftlConfig.notifier.sendWarn('taskCanceled', {
task: taskInfo,
control: task.getControl(),
workflow: task.getWorkflowInfo(),
originWorkflow: task.getOriginWorkflow(),
reason: reason
})
this.logInfo('task canceled', this.buildTaskMeta(task, { reason: reason }))
}
示例6: onStartTask
onStartTask(task: ActivityTask, execution: Activity) {
this.activityTimers[task.id] = new Date()
this.ftlConfig.metricReporter.increment('activity.running')
this.ftlConfig.metricReporter.increment(`activity.byHandler.${task.activityName()}.running`)
const taskInfo = {task: {type: task.activityName(), id: execution.id}}
this.logInfo('received activity task', taskInfo)
execution.on('completed', this.onTaskCompleted.bind(this, task, execution))
execution.on('failed', this.onTaskFailed.bind(this, task, execution))
execution.on('canceled', this.onTaskCanceled.bind(this, task, execution))
execution.on('error', this.onTaskError.bind(this, task, execution))
execution.on('heartbeat', this.onTaskHeartbeat.bind(this, task, execution))
execution.on('heartbeatComplete', this.onTaskHBComplete.bind(this, task, execution))
this.ftlConfig.notifier.sendInfo('taskStarted', {
task: taskInfo.task,
control: task.getControl(),
workflow: task.getWorkflowInfo(),
originWorkflow: task.getOriginWorkflow()
})
}