Re: [Paraview] Executive Not calling RequestData

2015-06-30 Thread Dean, Kevin
Well, after moving the writer to my RequestData function, I found that the output is not properly copying the multi-block dataset for some reason. I have to try and figure that out... Kevin E. Dean On Tue, Jun 30, 2015 at 4:22 PM, Dean, Kevin < kevin.d...@decisionsciencescorp.com> wrote: > So I

Re: [Paraview] Executive Not calling RequestData

2015-06-25 Thread Utkarsh Ayachit
RequestData doesn't get called unless the pipeline determines that something has changed. This is at core of VTK's demand driven execution pipeline. You may want to checkout Berk's blog ( http://www.kitware.com/blog/home/post/831) about how you can use `CONTINUE_EXECUTING` key for "streaming". Utk