⬆️ (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:
Daniel López Azaña 2024-04-04 20:19:38 +02:00
parent 023758b3b5
commit 0a1fa8873a
2 changed files with 2 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "lightstreamer-client" name = "lightstreamer-client"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
authors = ["Daniel López Azaña <daniloaz@gmail.com>"] authors = ["Daniel López Azaña <daniloaz@gmail.com>"]
description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers." description = "A Rust client for Lightstreamer, designed to facilitate real-time communication with Lightstreamer servers."

View File

@ -361,16 +361,10 @@ impl LightstreamerClient {
// Split the WebSocket stream into a write and a read stream. // Split the WebSocket stream into a write and a read stream.
let (mut write_stream, mut read_stream) = ws_stream.split(); 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. // Initiate communication with the server by sending a 'wsok' message.
// //
write_stream write_stream.send(Message::Text("wsok".into())).await?;
.send(Message::Text("wsok".into()))
.await?;
// //
// Start reading and processing messages from the server. // Start reading and processing messages from the server.