Socket.bind

Starts accepting incoming connections on endpoint.

Throws

ZmqException if $(ZMQ) reports an error.

Corresponds to

$(ZMQREF zmq_bind())

Examples

auto s = Socket(SocketType.pub);
s.bind("inproc://zmqd_bind_example");

Meta