Reading Flatbuffers objects sent via ZMQ in C++ throws unhandled exception
问题 I am trying to send a reasonably big Flatbuffers object over the network via ZMQ and then read it using C++. When accessing the object, I get unhandled exceptions that I don't know how to solve. Even this minimal example fails: The flatbuffers schema: namespace flatbuffer; table TestBuf { testStatus:bool; testNumber:double; testInt:int; } root_type TestBuf; The main.cpp using the REP socket: int main() { zmq::context_t context(1); zmq::socket_t socket(context, ZMQ_REP); socket.bind("tcp://*