Re: [Twisted-Python] Cause epollreactor to busyspin

2016-04-21 Thread Tim Hughes
On 2016-04-21 11:30, Tim Hughes wrote: On 2016-04-21 03:57, Glyph wrote: On Apr 20, 2016, at 10:37, Tim Hughes wrote: Hi All, I have a latency sensitive application that gets affected when it is moved between cores or the system has to wake from idling. Can you explain "gets affecte

Re: [Twisted-Python] Cause epollreactor to busyspin

2016-04-21 Thread Tim Hughes
On 2016-04-21 03:57, Glyph wrote: On Apr 20, 2016, at 10:37, Tim Hughes wrote: Hi All, I have a latency sensitive application that gets affected when it is moved between cores or the system has to wake from idling. Can you explain "gets affected" in more detail? If moving betwee

[Twisted-Python] Cause epollreactor to busyspin

2016-04-20 Thread Tim Hughes
e: - timeout = -1 # Wait indefinitely. try: ``` Cheers Tim Hughes ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Client Application service.Service

2016-03-20 Thread Tim Hughes
Much appreciated. I think that has got me over that hurdle :-) Tim Hughes mailto:thug...@thegoldfish.org On 17 March 2016 at 02:21, Enrique Samson Jr. wrote: > Hi Tim, > > I think you need to keep a reference to an instance of your > MyClientProtocol. Your example does not

Re: [Twisted-Python] Client Application service.Service

2016-03-19 Thread Tim Hughes
examples of this and am beginning to think I am conceptualising incorrectly or over thinking it. If anyone can point me to some examples or point me in the right direction it would be awesome. Hopefully my example makes sense. Cheers Tim Tim Hughes mailto:thug...@thegoldfish.org Hi all, I am looking

[Twisted-Python] Client Application service.Service

2016-03-18 Thread Tim Hughes
best to put my application logic. The protocol is basically a ascii line style application It feels to me that my Service should be the core and the protocol should just be something like def send_mesage(message): Tim Hughes mailto:thug...@thegoldfish.org

Re: [Twisted-Python] which async framework?

2014-04-10 Thread Tim Hughes
IX stuff https://pypi.python.org/pypi/fixlib/0.5 Tim Hughes mailto:thug...@thegoldfish.org ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] xmlrpc - Possable failure to understand async concept

2009-04-26 Thread Tim Hughes
Thanks for the help on this everyone Tim Hughes mailto:thug...@thegoldfish.org Without religion, people wouldn't pray for peace, they would work towards it. On Fri, Apr 24, 2009 at 8:33 PM, Drew Smathers wrote: > On Fri, Apr 24, 2009 at 2:28 AM, Nathan wrote: > > On Thu, Apr

[Twisted-Python] xmlrpc - Possable failure to understand async concept

2009-04-23 Thread Tim Hughes
== == Client #!/usr/bin/env python import xmlrpclib import datetime import sys proxy = xmlrpclib.ServerProxy("http://localhost:8080/";, allow_none=True) print "%s" % str(proxy.block_fixed(5)) ==