Re: [Twisted-Python] Re:how to pass on the connection failed or connection lost error

2009-03-06 Thread Jean-Paul Calderone
On Thu, 5 Mar 2009 15:49:31 -0800 (PST), khawar hasham wrote: Hi, I tried to use this suggestion but I could not make it work. here is the test I am using in my application class def callSend(self, msg):   plugin.send(msg) Now in plugin class def send(self, msg):   print 'before cal

[Twisted-Python] Re:how to pass on the connection failed or connection lost error

2009-03-05 Thread khawar hasham
Hi, I tried to use this suggestion but I could not make it work. here is the test I am using in my application class def callSend(self, msg):   plugin.send(msg) Now in plugin class def send(self, msg):   print 'before call'   threads.blockingCallFromThread(reactor, remotesend, msg)