SoftLove.Communication.Publisher.Publisher C# (CSharp) Method

Publisher() public method

Creation d'un Publisher Les valeurs par defaut sont _ip = "*", _port = 5555
public Publisher ( string _ip = "*", int _port = 5555 ) : System
_ip string
_port int
return System
        public Publisher(string _ip = "*", int _port = 5555)
        {
            // Initialisation
            Context = new ZContext();
            Socket = new ZSocket(context, ZSocketType.PUB);

            // Bind
            this.BindSocket(_ip, _port);
        }