OpenStream() публичный Метод

Open single stream for specified topic
public OpenStream ( String topic ) : ConsumerMessageStream
topic String
Результат ConsumerMessageStream
Пример #1
0
        public static void Main(string[] args)
        {
            using (var consumer = new Consumer("localhost:5567"))
            {
                consumer.StateStorageDirectory = @"c:\tmp\consumer-state";

                using (var stream = consumer.OpenStream("sample-topic"))
                {
                    Console.WriteLine("SampleConsumer.");
                    Console.WriteLine("---------------");
                    Console.WriteLine("  State Storage Directory: {0}", consumer.StateStorageDirectory);
                    Console.WriteLine("  This app will consumer all messages from topic 'sample-topic' and will");
                    Console.WriteLine("  print them line by line.");
                    Console.WriteLine();

                    foreach (var message in stream.NextString())
                    {
                        Console.WriteLine(message);
                    }
                }

            }
        }