class Async::Container::Threaded::Child

def close

Invoke {#terminate!} and then {#wait} for the child thread to exit.
def close
	self.terminate!
	self.wait
ensure
	super
end