Asyncore Loop Question

2005-10-31 Thread John W
Hello, I have a gui application where I am trying to use the asyncore module to gather data from other computers. I am able to connect, but I am getting constant handle_write_event method calls into my application. It is obviously slowing down the gui processing significantly. My understanding

Re: Asyncore Loop Question

2005-10-31 Thread Steve Holden
John W wrote: Hello, I have a gui application where I am trying to use the asyncore module to gather data from other computers. I am able to connect, but I am getting constant handle_write_event method calls into my application. It is obviously slowing down the gui processing significantly.

Re: Asyncore Loop Question

2005-10-31 Thread John W
Steve, Ar you saying that I should close the connection until I have data to write? Or should I be using the readable and writable methods to turn it off? Thanks for your help, unfortunatly, I have struggled with the documentation and getting a clear understanding of everything. This is my first

Re: Asyncore Loop Question

2005-10-31 Thread Steve Holden
John W wrote: On 10/31/05, Steve Holden [EMAIL PROTECTED] wrote: John W wrote: Hello, I have a gui application where I am trying to use the asyncore module to gather data from other computers. I am able to connect, but I am getting constant handle_write_event method calls into my application.