⬆️ (Cargo.toml): bump package version to 0.1.1 for new release
♻️ (ls_client.rs): streamline WebSocket 'wsok' message sending code
This commit is contained in:
parent
023758b3b5
commit
0a1fa8873a
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "lightstreamer-client"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
authors = ["Daniel López Azaña <daniloaz@gmail.com>"]
|
||||
description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers."
|
||||
|
@ -361,16 +361,10 @@ impl LightstreamerClient {
|
||||
// Split the WebSocket stream into a write and a read stream.
|
||||
let (mut write_stream, mut read_stream) = ws_stream.split();
|
||||
|
||||
//
|
||||
// Confirm the connection by sending a 'wsok' message to the server.
|
||||
//
|
||||
|
||||
//
|
||||
// Initiate communication with the server by sending a 'wsok' message.
|
||||
//
|
||||
write_stream
|
||||
.send(Message::Text("wsok".into()))
|
||||
.await?;
|
||||
write_stream.send(Message::Text("wsok".into())).await?;
|
||||
|
||||
//
|
||||
// Start reading and processing messages from the server.
|
||||
|
Loading…
x
Reference in New Issue
Block a user