本文整理汇总了C++中MessagePtr::GetReflection方法的典型用法代码示例。如果您正苦于以下问题:C++ MessagePtr::GetReflection方法的具体用法?C++ MessagePtr::GetReflection怎么用?C++ MessagePtr::GetReflection使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MessagePtr
的用法示例。
在下文中一共展示了MessagePtr::GetReflection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: onProtobufMessage
void AprilServer::onProtobufMessage(const muduo::net::TcpConnectionPtr& conn,
const MessagePtr& message,
muduo::Timestamp time)
{
const google::protobuf::Descriptor* descriptor = message->GetDescriptor();
const google::protobuf::FieldDescriptor* id_field = descriptor->FindFieldByName("id");
const google::protobuf::FieldDescriptor* sync_field = descriptor->FindFieldByName("sync");
const google::protobuf::Reflection* reflection = message->GetReflection();
int32_t id = reflection->GetInt32(*message, id_field);
bool sync = reflection->GetBool(*message, sync_field);
LOG_INFO << "receive - id " << id << " sync " << sync;
if (_sync && sync) {
_dict->swap_dict();
_sync = false;
}
april::response mess;
int value = 0;
_dict->seek(id, &value);
mess.set_id(value);
mess.set_sync(_sync);
_codec.send(conn, mess);
}
示例2:
Arcus::PythonMessage::PythonMessage(const MessagePtr& message)
{
_shared_message = message;
_message = message.get();
_reflection = message->GetReflection();
_descriptor = message->GetDescriptor();
}