Enum batsim::json_protocol::BatsimEvent
[−]
[src]
pub enum BatsimEvent {
SIMULATION_BEGINS {
timestamp: f64,
data: SimulationBegins,
},
JOB_SUBMITTED {
timestamp: f64,
data: JobSubmitted,
},
SIMULATION_ENDS {
timestamp: f64,
},
JOB_COMPLETED {
timestamp: f64,
data: JobCompleted,
},
JOB_KILLED {
timestamp: f64,
data: JobKilled,
},
EXECUTE_JOB {
timestamp: f64,
data: ExecuteJob,
},
REJECT_JOB {
timestamp: f64,
data: RejectJob,
},
KILL_JOB {
timestamp: f64,
data: KillJob,
},
SUBMIT_JOB {
timestamp: f64,
data: SubmitJob,
},
NOTIFY {
timestamp: f64,
data: Notify,
},
}Variants
SIMULATION_BEGINSFrom batsim to sched
Fields of SIMULATION_BEGINS
timestamp: f64 | |
data: SimulationBegins |
JOB_SUBMITTEDFields of JOB_SUBMITTED
timestamp: f64 | |
data: JobSubmitted |
SIMULATION_ENDSFields of SIMULATION_ENDS
timestamp: f64 |
JOB_COMPLETEDFields of JOB_COMPLETED
timestamp: f64 | |
data: JobCompleted |
JOB_KILLEDFields of JOB_KILLED
timestamp: f64 | |
data: JobKilled |
EXECUTE_JOBFrom sched to batsim
Fields of EXECUTE_JOB
timestamp: f64 | |
data: ExecuteJob |
REJECT_JOBFields of REJECT_JOB
timestamp: f64 | |
data: RejectJob |
KILL_JOBFields of KILL_JOB
timestamp: f64 | |
data: KillJob |
SUBMIT_JOBDynamic submit feature
Fields of SUBMIT_JOB
timestamp: f64 | |
data: SubmitJob |
NOTIFYFields of NOTIFY
timestamp: f64 | |
data: Notify |