class Async::Container::Threaded::Child

def as_json(...)

@returns [Hash] The request as a hash.

Convert the child process to a hash, suitable for serialization.
def as_json(...)
	{
		name: @thread.name,
		status: @status&.as_json,
	}
end