class Async::Container::Threaded::Child::Instance

def self.for(thread)

@parameter thread [Thread] The thread intance to wrap.
Wrap an instance around the {Thread} instance from within the threaded child.
def self.for(thread)
	instance = self.new(thread.out)
	
	return instance
end