up vote 1 down vote favorite
share [g+] share [fb]

I have a chat client that continuously polls a server and fetches new messages.

From my def __init__() I have:

wx.CallAfter(self.pollServer)

Which is defined:

def pollServer(self):
    t = self.updateMessages()
    time.sleep(5)
    self.pollServer()

Now printing the messages into the Terminal shows that it works but the GUI is 'frozen' instead of being continuously refreshed and I thought CallAfter takes care of that. Could you help?

link|improve this question

1  
Just found out about wxPyTimer() is that the alternative? – Radek Nov 21 '09 at 16:24
feedback

1 Answer

up vote 2 down vote accepted

instead of

time.sleep(5)
self.pollServer()

try with

wx.CallLater(5,self.pollServer)
link|improve this answer
AttributeError: 'module' object has no attribute 'CallLater' – Radek Nov 21 '09 at 16:25
1  
what is your wxPython version btw? its working in mine – YOU Nov 21 '09 at 16:26
and also which OS? – YOU Nov 21 '09 at 16:27
1  
wx.VERSION gives me 2.6.3.2 – Radek Nov 21 '09 at 16:30
2  
ah ok, seems like in wx 2.8 its Renamed wx.FutureCall to wx.CallLater, so may be yours is wx.FutureCall wxpython.org/recentchanges.php – YOU Nov 21 '09 at 16:33
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.