class Async::Container::Notify::Client

def reloading!(**message)

@parameters message [Hash] Additional details to send with the message.
Notify the parent controller that the child is reloading.
def reloading!(**message)
	message[:ready] = false
	message[:reloading] = true
	message[:status] ||= "Reloading..."
	
	send(**message)
end