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
Is it possible?
The text was updated successfully, but these errors were encountered:
Refer to examples:
let (mut ws, _) = fastwebsockets::handshake::client(&SpawnExecutor, req, tls_stream).await?; ws.set_auto_pong(false); ws.set_auto_close(false); let (rx, tx) = ws.split(tokio::io::split); let rx = FragmentCollectorRead::new(rx); Ok((rx, tx))
Sorry, something went wrong.
Thanks, It won't work until I added the unstable_split feature. Does it work for you with default setup?
This is correct, unstable_split has to be added.
No branches or pull requests
Is it possible?
The text was updated successfully, but these errors were encountered: