Utility Functions | R Documentation |
Utility functions
zmq.strerror(errno)
zmq.version()
errno |
an integer for the error number |
zmq.strerror()
gets ZeroMQ error message string.
zmq.version()
print current ZeroMQ version.
zmq.strerror()
returns an R string containing ZeroMQ error
message.
Wei-Chen Chen wccsnow@gmail.com.
ZeroMQ/4.1.0 API Reference: https://libzmq.readthedocs.io/en/zeromq4-1/
Programming with Big Data in R Website: https://pbdr.org/
zmq.ctx.new()
, zmq.ctx.destroy()
,
zmq.socket()
, zmq.close()
.
## Not run:
library(pbdZMQ, quietly = TRUE)
context <- zmq.ctx.new()
zmq.ctx.destroy(context)
zmq.strerror(0)
zmq.ctx.destroy(context) # Error since context is free.
zmq.strerror(14)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.