class Async::Container::Notify::Client

def restarting!(**message)

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