class Async::Container::Threaded::Child

def kill!

Invoke {Thread#kill} on the child thread.
def kill!
	# Killing a thread does not raise an exception in the thread, so we need to handle the status here:
	@status = Status.new(:killed)
	
	@thread.kill
end