indexing description: "The most general notion of process" deferred class PROCESS feature over: BOOLEAN is -- Must execution terminate now? deferred end initialize is -- Prepare to execute process operations do end step is -- Execute basic process operations deferred end wrapup is -- Execute termination operations do end live is -- Perform process lifecycle do from initialize until over loop step end wrapup end end -- class PROCESS