| TaskServerHeartbeatCommand Enumeration |
Commands that the job server can send to a task server in response to a hearbeat.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public enum TaskServerHeartbeatCommand
Public Enumeration TaskServerHeartbeatCommand
public enum class TaskServerHeartbeatCommand
type TaskServerHeartbeatCommand
Members
| Member name | Value | Description |
---|
| None | 0 |
The job server doesn't have a command for the task server.
|
| ReportStatus | 1 |
The task server should send a InitialStatusJetHeartbeatData in the next heartbeat.
|
| RunTask | 2 |
The task server should execute the specified task.
|
| CleanupJob | 3 |
Cleans up all data related to the tasks of the specified job.
|
| KillTask | 4 |
The task server should kill the specified task attempt.
|
See Also