Sha256: b3281d00f3a4b3f5a240e82679e69103c459c318e02cd0e3ee9caca1b9c90285
Contents?: true
Size: 631 Bytes
Versions: 24
Compression:
Stored size: 631 Bytes
Contents
# see https://github.com/chuckremes/ffi-rzmq/pull/133 require 'ffi-rzmq' require 'ffi-rzmq/message' module ZMQ class Message def copy_in_bytes bytes, len data_buffer = LibC.malloc len # writes the exact number of bytes, no null byte to terminate string data_buffer.put_bytes 0, bytes, 0, len # use libC to call free on the data buffer; earlier versions used an # FFI::Function here that called back into Ruby, but Rubinius won't # support that and there are issues with the other runtimes too LibZMQ.zmq_msg_init_data @pointer, data_buffer, len, LibC::Free, nil end end end
Version data entries
24 entries across 24 versions & 1 rubygems