------------------------------------------------------------------------------
| 381 | |
| 382 | //------------------------------------------------------------------------------ |
| 383 | void vtkParallelRenderManager::StartServices() |
| 384 | { |
| 385 | vtkDebugMacro("StartServices"); |
| 386 | |
| 387 | if (!this->Controller) |
| 388 | { |
| 389 | vtkErrorMacro("Must set Controller before starting service"); |
| 390 | return; |
| 391 | } |
| 392 | if (this->Controller->GetLocalProcessId() == this->RootProcessId) |
| 393 | { |
| 394 | vtkWarningMacro("Starting service on root process (probably not what you wanted to do)"); |
| 395 | } |
| 396 | |
| 397 | this->InitializeRMIs(); |
| 398 | this->Controller->ProcessRMIs(); |
| 399 | } |
| 400 | |
| 401 | //------------------------------------------------------------------------------ |
| 402 | void vtkParallelRenderManager::StopServices() |