class Async::Container::Notify::Server

def self.generate_path

@returns [String] The path for the UNIX socket.

Generate a new unique path for the UNIX socket.
def self.generate_path
	File.expand_path(
		"async-container-#{::Process.pid}-#{SecureRandom.hex(8)}.ipc",
		Dir.tmpdir
	)
end