EFEducationFirstMobile / librabbitmq-objc

Objective-C wrapper for librabbitmq-c
Other
9 stars 8 forks source link

How to tear down connections when going to background? #3

Open HT-Stephen opened 10 years ago

HT-Stephen commented 10 years ago

Trying to use this as is but are having a little trouble handling backgrounding on iOS. The problem with iOS is that it can sometimes randomly connect to a different wifi network when coming out of background. Because of this any existing rabbitMQ connections that it had can become invalid or break.

What I'm trying to do is close everything down, close the consumer and connection on background, and then restart it upon resume. I see that this has significant improvements concerning teardown but I'm having trouble with the actual implementation.

Thank you in advance!

pinipints commented 9 years ago

Hi, were you able to achieve this? I was able to close the channel but connection continues to remain open

HT-Stephen commented 9 years ago

I will post the changes to the wrapper I made to my github repo sometime later today. The way I had it work was by enabling some of the commented out connection checker code and defaulting to "failing fast". I would rather have it assume it's down and just reestablish a connection immediately than have it sit there waiting for minutes on end.

pinipints commented 9 years ago

Thanks.. waiting for you to publish the details