@{ * This method receives data from a corresponding send (non-blocking). * The last argument, * vtkMPICommunicator::Request& req can later be used (with * req.Test() ) to test the success of the message. Return values are * 1 for success and 0 otherwise. * Note: These methods delegate to the communicator */
| 243 | * Note: These methods delegate to the communicator |
| 244 | */ |
| 245 | int NoBlockReceive( |
| 246 | int* data, int length, int remoteProcessId, int tag, vtkMPICommunicator::Request& req) |
| 247 | { |
| 248 | return ((vtkMPICommunicator*)this->Communicator) |
| 249 | ->NoBlockReceive(data, length, remoteProcessId, tag, req); |
| 250 | } |
| 251 | int NoBlockReceive( |
| 252 | unsigned long* data, int length, int remoteProcessId, int tag, vtkMPICommunicator::Request& req) |
| 253 | { |
nothing calls this directly
no test coverage detected