MRPT
2.0.1
|
or above) (in #include <mrpt/serialization/serialization_zmq.h>)
Namespaces | |
mrpt::serialization::internal | |
Functions | |
template<typename ZMQ_SOCKET_TYPE > | |
void | mrpt::serialization::mrpt_send_to_zmq (ZMQ_SOCKET_TYPE zmq_socket, const mrpt::serialization::CSerializable &obj, const size_t max_packet_len=0) |
Send an MRPT object to a ZMQ socket. More... | |
template<typename ZMQ_SOCKET_TYPE , typename VECTOR_MSG_T > | |
bool | mrpt::serialization::mrpt_recv_from_zmq_buf (ZMQ_SOCKET_TYPE zmq_socket, VECTOR_MSG_T &out_lst_msgs, mrpt::io::CMemoryStream &target_buf, bool dont_wait, size_t *rx_obj_length_in_bytes) |
Users may normally call mrpt_recv_from_zmq() and mrpt_recv_from_zmq_into(). More... | |
template<typename ZMQ_SOCKET_TYPE > | |
mrpt::serialization::CSerializable::Ptr | mrpt::serialization::mrpt_recv_from_zmq (ZMQ_SOCKET_TYPE zmq_socket, bool dont_wait=false, size_t *rx_obj_length_in_bytes=nullptr) |
Receives an MRPT object from a ZMQ socket, determining the type of the object on-the-fly. More... | |
template<typename ZMQ_SOCKET_TYPE > | |
bool | mrpt::serialization::mrpt_recv_from_zmq_into (ZMQ_SOCKET_TYPE zmq_socket, mrpt::serialization::CSerializable &target_object, bool dont_wait=false, size_t *rx_obj_length_in_bytes=nullptr) |
Like mrpt_recv_from_zmq() but without dynamically allocating the received object, more efficient to use if the type of the received object is known in advance. More... | |
mrpt::serialization::CSerializable::Ptr mrpt::serialization::mrpt_recv_from_zmq | ( | ZMQ_SOCKET_TYPE | zmq_socket, |
bool | dont_wait = false , |
||
size_t * | rx_obj_length_in_bytes = nullptr |
||
) |
Receives an MRPT object from a ZMQ socket, determining the type of the object on-the-fly.
[in] | zmq_socket | The zmq socket object. |
[in] | dont_wait | If true, will fail if there is no data ready to be read. If false (default) this function will block until data arrives. |
[out] | rx_obj_length_in_bytes | If non-nullptr, the object length will be stored here. |
<mrpt/serialization/serialization_zmq.h>
requires libzmq to be available in your system and linked to your user code. This function can be used even if MRPT was built without ZMQ support, thanks to the use of templates. std::exception | If the object finds any critical error during de-serialization. |
Definition at line 176 of file zmq_serialization.h.
References mrpt::serialization::internal::free_zmq_msg_lst(), and mrpt::serialization::mrpt_recv_from_zmq_buf().
bool mrpt::serialization::mrpt_recv_from_zmq_buf | ( | ZMQ_SOCKET_TYPE | zmq_socket, |
VECTOR_MSG_T & | out_lst_msgs, | ||
mrpt::io::CMemoryStream & | target_buf, | ||
bool | dont_wait, | ||
size_t * | rx_obj_length_in_bytes | ||
) |
Users may normally call mrpt_recv_from_zmq() and mrpt_recv_from_zmq_into().
This function just stores the received data into a memory buffer without parsing it into an MRPT object.
Definition at line 97 of file zmq_serialization.h.
References mrpt::io::CMemoryStream::assignMemoryNotOwn(), mrpt::io::CMemoryStream::clear(), mrpt::io::CMemoryStream::getTotalBytesCount(), and mrpt::io::CMemoryStream::Seek().
Referenced by mrpt::serialization::mrpt_recv_from_zmq(), and mrpt::serialization::mrpt_recv_from_zmq_into().
bool mrpt::serialization::mrpt_recv_from_zmq_into | ( | ZMQ_SOCKET_TYPE | zmq_socket, |
mrpt::serialization::CSerializable & | target_object, | ||
bool | dont_wait = false , |
||
size_t * | rx_obj_length_in_bytes = nullptr |
||
) |
Like mrpt_recv_from_zmq() but without dynamically allocating the received object, more efficient to use if the type of the received object is known in advance.
[in] | target_object | The received object will be stored here. An exception will be raised upon type mismatch. |
Definition at line 204 of file zmq_serialization.h.
References mrpt::serialization::internal::free_zmq_msg_lst(), and mrpt::serialization::mrpt_recv_from_zmq_buf().
void mrpt::serialization::mrpt_send_to_zmq | ( | ZMQ_SOCKET_TYPE | zmq_socket, |
const mrpt::serialization::CSerializable & | obj, | ||
const size_t | max_packet_len = 0 |
||
) |
Send an MRPT object to a ZMQ socket.
[in] | obj | The object to be serialized and sent to the socket. |
[in] | zmq_socket | The zmq socket object. |
[in] | max_packet_len | The object will be split into a series of ZMQ "message parts" of this maximum length (in bytes). Default=0, which means do not split in parts. |
<mrpt/serialization/serialization_zmq.h>
requires libzmq to be available in your system and linked to your user code. This function can be used even if MRPT was built without ZMQ support, thanks to the use of templates. std::exception | If the object finds any critical error during serialization or on ZMQ errors. |
Definition at line 41 of file zmq_serialization.h.
References mrpt::io::internal::free_fn_for_zmq(), and mrpt::io::CMemoryStream::getTotalBytesCount().
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |