示例#1
0
        private void _t_Elapsed(object sender, ElapsedEventArgs e)
        {
            var p = _pub.CreateData();

            p.Value = $"This is transmission {_counter++}!";

            _pub.Publish(p).Wait();
        }