init.message {rzmq} | R Documentation |
create a message object.
Description
Create a ZeroMQ message object that can be sent multiple times
Usage
init.message(data, serialize=TRUE, xdr=.Platform$endian=="big")
Arguments
data |
the R object to be sent |
serialize |
whether to call serialize before sending the data |
xdr |
passed directly to serialize command if serialize is requested |
Value
a ZeroMQ message object as external pointer
Author(s)
ZMQ was written by Martin Sustrik <sustrik@250bpm.com> and Martin Lucina <mato@kotelna.sk>. rzmq was written by Whit Armstrong.
References
http://www.zeromq.org http://api.zeromq.org http://zguide.zeromq.org/page:all
See Also
Examples
## Not run:
## remote execution server in rzmq
library(rzmq)
data = list(x=5)
msg = init.message(data)
## End(Not run)
[Package rzmq version 0.9.13 Index]