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

def as_json(...)

@returns [Hash] The thread as a hash, including `process_id`, `thread_id`, and `name`.

Generate a hash representation of the thread.
def as_json(...)
	{
		process_id: ::Process.pid,
		thread_id: @thread.object_id,
		name: @thread.name,
	}
end