Re: applicationWillTerminate and asynchronous orderly shutdown

2008-06-10 Thread Hamish Allan
On Tue, Jun 10, 2008 at 9:12 PM, Stuart Malin <[EMAIL PROTECTED]> wrote: > I have an app that establishes multiple TCP connections. If the user quits > the app, I'd like to shut all those connections gracefully (i.e., conduct a > bit of protocol) rather than just close them abruptly. To most prope

applicationWillTerminate and asynchronous orderly shutdown

2008-06-10 Thread Stuart Malin
I have an app that establishes multiple TCP connections. If the user quits the app, I'd like to shut all those connections gracefully (i.e., conduct a bit of protocol) rather than just close them abruptly. To most properly handle this, I should even wait for the servers' responses. I am cu