| 126 | using process::Process<T>::send; |
| 127 | |
| 128 | void reply(const google::protobuf::Message& message) |
| 129 | { |
| 130 | CHECK(from) << "Attempting to reply without a sender"; |
| 131 | send(from, message); |
| 132 | } |
| 133 | |
| 134 | // Installs that take the sender as the first argument. |
| 135 | template <typename M> |