class Async::Container::Threaded::Child

def finished(error = nil)

Invoked by the @waiter thread to indicate the outcome of the child thread.
def finished(error = nil)
	if error
		Console.error(self) {error}
	end
	
	@status ||= Status.new(error)
	self.close_write
end