@{ * Broadcast sends the array in the process with id \c srcProcessId to all of * the other processes. All processes must call these method with the same * arguments in order for it to complete. */
| 314 | * arguments in order for it to complete. |
| 315 | */ |
| 316 | int Broadcast(int* data, vtkIdType length, int srcProcessId) |
| 317 | { |
| 318 | return this->BroadcastVoidArray(data, length, VTK_INT, srcProcessId); |
| 319 | } |
| 320 | int Broadcast(unsigned int* data, vtkIdType length, int srcProcessId) |
| 321 | { |
| 322 | return this->BroadcastVoidArray(data, length, VTK_UNSIGNED_INT, srcProcessId); |
no test coverage detected