That was quick to work out after looking at the source code. Thanks to the docs for linking directly to the source!
There is an ExitNow exception you can simply raise from the app, which exits the loop.
Using the EchoHandler
example from the docs, I've modified it to quit immediately when receiving data.
class EchoHandler(asyncore.dispatcher_with_send):
def handle_read(self):
data = self.recv(8192)
if data:
raise asyncore.ExitNow('Server is quitting!')
Also, keep in mind that you can catch ExitNow
so your app doesn't raise if you're using it internally. This is some of my source:
def run(config):
instance = LockServer(config)
try:
asyncore.loop()
except asyncore.ExitNow, e:
print e
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…