Can anybody answer my question?
When Catalyst receives the next timestep update from some simulation every
few seconds or minutes, it sends its data to the pvserver process. The
pvserver somehow notifies the Paraview client, which will display the new
data.
If Utkarsh's comment is correct that no events can be forwarded from server
to client, then how does Paraview know that it should display the next
timestep?

I need to implement a very similar use case, for which a better
understanding of the communication between the Catalyst session, the
pvserver and the Paraview client is of high importance.
Thanks
Kolja

On Wed, Nov 22, 2017 at 7:54 PM, Kolja Petersen <petersenko...@gmail.com>
wrote:

> Oh, well, but how is Catalyst forwarding new time step information from
> server to client?
> Time step updates can occur at any time. Which event mechanism notifies
> the client?
> Thanks
> Kolja
>
> On Wed, Nov 22, 2017 at 6:57 PM, Utkarsh Ayachit <
> utkarsh.ayac...@kitware.com> wrote:
>
>> This is not a use-case supported in ParaView. We don't forward events
>> from server to client.
>>
>> On Wed, Nov 22, 2017 at 12:53 PM, Kolja Petersen <petersenko...@gmail.com
>> > wrote:
>>
>>> Hello,
>>> I would like to invoke a callback on a proxy in a pvpython session from
>>> a server-side method.
>>>
>>> In my server-side class "vtkCustom" I have a method
>>> void vtkCustom::SetData(int i){
>>>   ...
>>>   this->InvokeEvent(1999,NULL);
>>>   ...
>>> }
>>>
>>>
>>> On the client side, I create a proxy to a vtkCustom object, register an
>>> observer and set the "Data" property, which should invoke eventid=1999:
>>> ...
>>> custom=pxm.NewProxy("myextensions","Custom")
>>> pxm.RegisterProxy("myextensions","Custom",custom)
>>>
>>> def fun(obj,event):
>>>   print "CALLBACK",obj,event
>>>
>>> custom.AddObserver(1999,fun)
>>> vtk.vtkSMPropertyHelper(custom.GetProperty("Data")).Set(42)
>>> ...
>>>
>>> The observer function "fun" on the client is never invoked, although the
>>> server-side invokes that event. I'm misunderstanding some concept of
>>> Paraviews event mechanism for sure. Can you help me correct my steps?
>>> Thanks
>>> Kolja
>>>
>>>
>>>
>>> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>>  Virenfrei.
>>> www.avast.com
>>> <https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail>
>>> <#m_-5360357721745673276_m_-5828339282545804963_m_-8161186613008835523_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>>>
>>> _______________________________________________
>>> Powered by www.kitware.com
>>>
>>> Visit other Kitware open-source projects at
>>> http://www.kitware.com/opensource/opensource.html
>>>
>>> Please keep messages on-topic and check the ParaView Wiki at:
>>> http://paraview.org/Wiki/ParaView
>>>
>>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>>
>>> Follow this link to subscribe/unsubscribe:
>>> http://public.kitware.com/mailman/listinfo/paraview
>>>
>>>
>>
>
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

Reply via email to