|
cpp-msgpack-rpc 0.2.0
An RPC library implementing MessagePack RPC.
|
Definition of parse_message_from_object function. More...
#include <cstdint>#include <cstdlib>#include <memory>#include <string_view>#include <utility>#include <msgpack.hpp>#include "msgpack_rpc/common/msgpack_rpc_exception.h"#include "msgpack_rpc/common/status_code.h"#include "msgpack_rpc/messages/call_result.h"#include "msgpack_rpc/messages/message_id.h"#include "msgpack_rpc/messages/message_type.h"#include "msgpack_rpc/messages/method_name_view.h"#include "msgpack_rpc/messages/parsed_message.h"#include "msgpack_rpc/messages/parsed_notification.h"#include "msgpack_rpc/messages/parsed_parameters.h"#include "msgpack_rpc/messages/parsed_request.h"#include "msgpack_rpc/messages/parsed_response.h"Go to the source code of this file.
Namespaces | |
| namespace | msgpack_rpc |
| Namespace of cpp-msgpack-rpc library. | |
Functions | |
| ParsedMessage | msgpack_rpc::messages::impl::parse_message_from_object (msgpack::object_handle object) |
| Parse a message from an object in msgpack library. | |
| MessageID | msgpack_rpc::messages::impl::parse_message_id_from_object (const msgpack::object &object) |
| Parse a message ID from an object in msgpack library. | |
| MessageType | msgpack_rpc::messages::impl::parse_message_type_from_object (const msgpack::object &object) |
| Parse a message type from an object in msgpack library. | |
| MethodNameView | msgpack_rpc::messages::impl::parse_method_name_from_object (const msgpack::object &object) |
| Parse a method name from an object in msgpack library. | |
| ParsedNotification | msgpack_rpc::messages::impl::parse_notification_from_object (msgpack::object_handle object) |
| Parse a notification from an object in msgpack library. | |
| ParsedRequest | msgpack_rpc::messages::impl::parse_request_from_object (msgpack::object_handle object) |
| Parse a request from an object in msgpack library. | |
| ParsedResponse | msgpack_rpc::messages::impl::parse_response_from_object (msgpack::object_handle object) |
| Parse a response from an object in msgpack library. | |
Definition of parse_message_from_object function.
Definition in file parse_message_from_object.h.