class Async::Container::Notify::Socket

def initialize(path)

@parameter path [String] The path to the UNIX socket used for sending messages to the process manager.
Initialize the notification client.
def initialize(path)
	@path = path
	@address = Addrinfo.unix(path, ::Socket::SOCK_DGRAM)
end