Utility Functions
From pbdZMQ v0.2-1
by Wei-Chen Chen
Utility Functions
Utility functions
- Keywords
- internal
Usage
zmq.strerror(errno)zmq.version()
Arguments
- errno
- an integer for the error number
Details
zmq.strerror()
gets ZeroMQ error message string.
zmq.version()
print current ZeroMQ version.
Value
zmq.strerror()
returns an R string containing ZeroMQ error message.
References
ZeroMQ/4.1.0 API Reference:
Programming with Big Data in R Website:
See Also
zmq.ctx.new()
, zmq.ctx.destroy()
,
zmq.socket()
, zmq.close()
.
Examples
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)
Community examples
Looks like there are no examples yet.