@{ * Convenience methods for receiving data arrays. */
| 232 | * Convenience methods for receiving data arrays. |
| 233 | */ |
| 234 | int Receive(int* data, vtkIdType maxlength, int remoteHandle, int tag) |
| 235 | { |
| 236 | return this->ReceiveVoidArray(data, maxlength, VTK_INT, remoteHandle, tag); |
| 237 | } |
| 238 | int Receive(unsigned int* data, vtkIdType maxlength, int remoteHandle, int tag) |
| 239 | { |
| 240 | return this->ReceiveVoidArray(data, maxlength, VTK_INT, remoteHandle, tag); |
nothing calls this directly
no test coverage detected