We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will throw null error, if sending terminate message throws.
Future flushing; try { var msg = new MessageBuffer(); msg.addByte(_MSG_TERMINATE); msg.addInt32(0); msg.setLength(); _socket.add(msg.buffer); flushing = _socket.flush(); } on Exception catch (e, st) { _messages.add(new ClientMessageImpl( severity: 'WARNING', message: 'Exception while closing connection. Closed without sending ' 'terminate message.', connectionName: _getDebugName(), exception: e, stackTrace: st)); } // Wait for socket flush to succeed or fail before closing the connection. flushing.whenComplete(_destroy);
Null exception at "flushing.".
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Will throw null error, if sending terminate message throws.
Null exception at "flushing.".
The text was updated successfully, but these errors were encountered: