MCPcopy Create free account
hub / github.com/Kitware/VTK / SendElementalDataObject

Method SendElementalDataObject

Parallel/Core/vtkCommunicator.cxx:206–216  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

204
205//------------------------------------------------------------------------------
206int vtkCommunicator::SendElementalDataObject(vtkDataObject* data, int remoteHandle, int tag)
207{
208 VTK_CREATE(vtkCharArray, buffer);
209 if (vtkCommunicator::MarshalDataObject(data, buffer))
210 {
211 return this->Send(buffer, remoteHandle, tag);
212 }
213
214 // could not marshal data
215 return 0;
216}
217
218//------------------------------------------------------------------------------
219int vtkCommunicator::Send(vtkDataArray* data, int remoteHandle, int tag)

Callers 1

SendMethod · 0.95

Calls 1

SendMethod · 0.95

Tested by

no test coverage detected