If I have a client connected to a server, and it's chilling in the reactor main loop waiting for events, when I hit CTRL-C, I get a "Connection to the other side was lost in a non-clean fashion: Connection lost." How can I set it up so that I know when a KeyboardInterrupt happens, so that I can do proper clean-up and disconnect cleanly? Or how can I implement a cleaner way to shutdown that doesn't involve CTRL-C, if possible?
|
If you really, really want to catch C-c specifically, then you can do this in the usual way for a Python application - use However, if you're really just interested in inserting some shutdown-time cleanup code, then you probably want to use If you're using If you're not using simple.tac gives an example of creating and using a custom service. wxacceptance.py gives an example of using Both of these mechanisms will give you notification whenever the reactor is stopping. This may be due to a C-c keystroke, or it may be because someone used |
|||
|
I'm not sure whether you talking about a client or a server that you've written. Anyway, nothing wrong with 'CTRL-C'. If you're writing a server as an Application. Subclass from If you've got a client, you could also subclass |
|||
|
|