- Use handleError instead of directly invoking onFailure - Stop the ack timer only when we receive ack responses - NoConnectionPossibleErrors are not irrecoverable
8 lines
223 B
Dart
8 lines
223 B
Dart
import 'package:moxxmpp/src/errors.dart';
|
|
|
|
/// Triggered by the StreamManagementManager when an ack request times out.
|
|
class StreamManagementAckTimeoutError extends XmppError {
|
|
@override
|
|
bool isRecoverable() => true;
|
|
}
|