| 116 | } |
| 117 | |
| 118 | void send(const process::UPID& to, |
| 119 | const google::protobuf::Message& message) |
| 120 | { |
| 121 | std::string data; |
| 122 | message.SerializeToString(&data); |
| 123 | process::Process<T>::send(to, message.GetTypeName(), std::move(data)); |
| 124 | } |
| 125 | |
| 126 | using process::Process<T>::send; |
| 127 |