class Async::Container::Notify::Pipe

def send(**message)

This is suitable for use with {Channel}.
Formats the message using JSON and sends it to the parent controller.
def send(**message)
	data = ::JSON.dump(message)
	
	@io.puts(data)
	@io.flush
end