* Convenience method when the arg is a string. */
| 261 | * Convenience method when the arg is a string. |
| 262 | */ |
| 263 | void TriggerRMI(int remoteProcessId, const char* arg, int tag) |
| 264 | { |
| 265 | this->TriggerRMI(remoteProcessId, (void*)arg, static_cast<int>(strlen(arg)) + 1, tag); |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Convenience method when there is no argument. |
nothing calls this directly
no test coverage detected