NetMQ.Zyre.Zyre.SetInterval C# (CSharp) Method

SetInterval() public method

Set UDP beacon discovery interval. Default is instant beacon exploration followed by pinging every 1,000 milliseconds.
public SetInterval ( System.TimeSpan interval ) : void
interval System.TimeSpan beacon discovery interval
return void
        public void SetInterval(TimeSpan interval)
        {
            _actor.SendMoreFrame("SET INTERVAL").SendFrame(interval.ToString());
        }