示例#1
0
        static void Main(string[] args)
        {
            Console.WriteLine(System.Runtime.InteropServices.RuntimeInformation.OSDescription);
            Console.WriteLine(System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription);
            Console.WriteLine($"Listening on topic : {args[1]}");
            var testTopicConsumer = new KafkaTopicConsumer(args[1]);

            testTopicConsumer.Listen(PostToApi);
        }