1classdef EventType < Copyable
4 % Copyright (c) 2012-2026, Imperial College London
7 %
event major classification
9 INIT = -1; % model
is initialized (time t=0)
10 LOCAL = 0; % dummy event
11 ARV = 1; % job arrival
12 DEP = 2; % job departure
13 PHASE = 3; % service advances to next phase, without departure
14 READ = 4; % read cache item
15 STAGE = 5; % random environment stage change
16 ENABLE = 6; % enable mode
18 PRE = 8; % consume from a place or queue buffer (no side-effects on server)
19 POST = 9; % produce to a place or queue buffer
23 function text = toText(type)