在 iOS 中保持应用程序空闲一段时间后,SRWebsocket 连接自动关闭
SRWebsocket connection is closing automatically after keeping app idle for sometime in iOS
我正在使用 SRWebSocket 在 iOS 中打开一个 websocket 连接。但是,如果我有时让应用程序保持空闲状态,连接会自动关闭。之后,当我尝试发送任何数据时,websocket 连接失败。
有没有办法保持 websocket 连接,直到我手动断开连接?
Web Socket 会在应用保持空闲或进入后台时断开连接。你可以尝试使用这个:
[UIApplication sharedApplication].idleTimerDisabled = YES
如果您的应用是 运行,使用此选项将禁止 iPhone 闲置。
我们需要间歇性地 ping 服务器(在我的例子中,我每 30 秒执行一次),以避免从服务器端关闭连接。
- (void)webSocketDidOpen:(SRWebSocket *)webSocket;
{
NSLog(@"Websocket Connected");
// Sending autoping to server
[self startConnectionCheckTimer];
}
// Checking for WSconnection by Sending Scheduled Ping
- (void)startConnectionCheckTimer {
if (!_timer) {
_timer = [NSTimer scheduledTimerWithTimeInterval:30.0f
target:self
selector:@selector(sendPing:)
userInfo:nil
repeats:YES];
}
}
- (void)stopConnectionCheckTimer {
if ([_timer isValid]) {
[_timer invalidate];
}
_timer = nil;
}
- (void)sendPing:(id)sender
{
[_webSocket sendPing:nil];
}
其中,_webSocket是我的SRWebSocket对象,
_timer 是 NSTimer 的一个对象。
我正在使用 SRWebSocket 在 iOS 中打开一个 websocket 连接。但是,如果我有时让应用程序保持空闲状态,连接会自动关闭。之后,当我尝试发送任何数据时,websocket 连接失败。
有没有办法保持 websocket 连接,直到我手动断开连接?
Web Socket 会在应用保持空闲或进入后台时断开连接。你可以尝试使用这个:
[UIApplication sharedApplication].idleTimerDisabled = YES
如果您的应用是 运行,使用此选项将禁止 iPhone 闲置。
我们需要间歇性地 ping 服务器(在我的例子中,我每 30 秒执行一次),以避免从服务器端关闭连接。
- (void)webSocketDidOpen:(SRWebSocket *)webSocket;
{
NSLog(@"Websocket Connected");
// Sending autoping to server
[self startConnectionCheckTimer];
}
// Checking for WSconnection by Sending Scheduled Ping
- (void)startConnectionCheckTimer {
if (!_timer) {
_timer = [NSTimer scheduledTimerWithTimeInterval:30.0f
target:self
selector:@selector(sendPing:)
userInfo:nil
repeats:YES];
}
}
- (void)stopConnectionCheckTimer {
if ([_timer isValid]) {
[_timer invalidate];
}
_timer = nil;
}
- (void)sendPing:(id)sender
{
[_webSocket sendPing:nil];
}
其中,_webSocket是我的SRWebSocket对象, _timer 是 NSTimer 的一个对象。