class Console::Event::Spawn

def status=(status)

@parameter status [Process::Status] The status of the command.

Set the status of the command, and record the end time.
def status=(status)
	@end_time = Time.now
	@status = status
end