------------------------------------------------------------------------------
| 71 | |
| 72 | //------------------------------------------------------------------------------ |
| 73 | vtkMultiProcessController::vtkMultiProcessController() |
| 74 | { |
| 75 | this->Internal = new vtkInternal; |
| 76 | |
| 77 | this->RMICount = 1; |
| 78 | |
| 79 | this->SingleMethod = nullptr; |
| 80 | this->SingleData = nullptr; |
| 81 | |
| 82 | this->Communicator = nullptr; |
| 83 | this->RMICommunicator = nullptr; |
| 84 | |
| 85 | this->BreakFlag = 0; |
| 86 | this->ForceDeepCopy = 1; |
| 87 | |
| 88 | this->BroadcastTriggerRMI = false; |
| 89 | |
| 90 | this->OutputWindow = nullptr; |
| 91 | |
| 92 | // Define an rmi internally to exit from the processing loop. |
| 93 | this->AddRMI(vtkMultiProcessControllerBreakRMI, this, BREAK_RMI_TAG); |
| 94 | } |
| 95 | |
| 96 | //------------------------------------------------------------------------------ |
| 97 | // This is an old comment that I do not know is true: |