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

From batsim to sched

Fields of SIMULATION_BEGINS

Fields of JOB_SUBMITTED

Fields of SIMULATION_ENDS

Fields of JOB_COMPLETED

Fields of JOB_KILLED

From sched to batsim

Fields of EXECUTE_JOB

Fields of REJECT_JOB

Fields of KILL_JOB

Dynamic submit feature

Fields of SUBMIT_JOB

Fields of NOTIFY

Trait Implementations

impl Debug for BatsimEvent
[src]

Formats the value using the given formatter.