public static void Main (string[] args)
		{
			var url = "ws://localhost:9000";
			var token = "nopwd";
			var client = new VortexClientTest (url, token);
			client.run ().Wait ();

			Console.WriteLine ("Completed");
		}
        public static void Main(string[] args)
        {
            var url    = "ws://localhost:9000";
            var token  = "nopwd";
            var client = new VortexClientTest(url, token);

            client.run().Wait();

            Console.WriteLine("Completed");
        }