------------------------------------------------------------------------------
| 70 | |
| 71 | //------------------------------------------------------------------------------ |
| 72 | vtkTypeBool vtkXMLPDataObjectWriter::ProcessRequest( |
| 73 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 74 | { |
| 75 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 76 | { |
| 77 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 78 | } |
| 79 | |
| 80 | vtkTypeBool retVal = this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 81 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 82 | { |
| 83 | if (retVal && this->ContinuingExecution) |
| 84 | { |
| 85 | request->Set(vtkStreamingDemandDrivenPipeline::CONTINUE_EXECUTING(), 1); |
| 86 | } |
| 87 | else |
| 88 | { |
| 89 | request->Remove(vtkStreamingDemandDrivenPipeline::CONTINUE_EXECUTING()); |
| 90 | this->ContinuingExecution = false; |
| 91 | } |
| 92 | } |
| 93 | return retVal; |
| 94 | } |
| 95 | |
| 96 | //------------------------------------------------------------------------------ |
| 97 | void vtkXMLPDataObjectWriter::SetWriteSummaryFile(int flag) |
nothing calls this directly
no test coverage detected