------------------------------------------------------------------------------
| 425 | |
| 426 | //------------------------------------------------------------------------------ |
| 427 | void vtkMultiProcessController::TriggerRMI( |
| 428 | int remoteProcessId, void* arg, int argLength, int rmiTag) |
| 429 | { |
| 430 | if (this->BroadcastTriggerRMI) |
| 431 | { |
| 432 | vtkErrorMacro("TriggerRMI should not be called when BroadcastTriggerRMI is ON"); |
| 433 | } |
| 434 | |
| 435 | // Deal with sending RMI to ourself here for now. |
| 436 | if (remoteProcessId == this->GetLocalProcessId()) |
| 437 | { |
| 438 | this->ProcessRMI(remoteProcessId, arg, argLength, rmiTag); |
| 439 | return; |
| 440 | } |
| 441 | |
| 442 | this->TriggerRMIInternal(remoteProcessId, arg, argLength, rmiTag, false); |
| 443 | } |
| 444 | |
| 445 | //------------------------------------------------------------------------------ |
| 446 | void vtkMultiProcessController::BroadcastTriggerRMIOnAllChildren( |