Exemplo n.º 1
0
        public static int Main(string[] args)
        {
            Publisher      publisher      = new Publisher("localhost", 6380);
            AudioProcessor audioProcessor = new AudioProcessor(publisher, "PLACEHOLDER");

            return(0);
        }
Exemplo n.º 2
0
        public static int Main(string[] args)
        {
            if (args == null)
            {
                throw new ArgumentNullException("No outlet was assigned");
            }
            Publisher      publisher      = new Publisher("localhost", 6380);
            AudioProcessor audioProcessor = new AudioProcessor(publisher, args[0]);

            return(0);
        }