♻️ (ls_client.rs): refactor connect method to check server_address before connecting

 (main.rs): rename subscription to my_subscription for clarity
 (main.rs): move subscription setup before client creation
 (main.rs): add client.subscribe and client.connect calls to main function
This commit is contained in:
Daniel López Azaña 2024-03-28 20:55:23 +01:00
parent 5c80b291fc
commit 68f73131aa
2 changed files with 12 additions and 7 deletions

View File

@ -148,7 +148,10 @@ impl LightstreamerClient {
///
/// See also `ConnectionDetails.setServerAddress()`
pub fn connect(&mut self) -> Result<(), IllegalStateException> {
// Implementation for connect
if self.server_address.is_none() {
return Err(IllegalStateException::new("No server address was configured."));
}
Ok(())
}

View File

@ -210,7 +210,7 @@ impl SubscriptionListener for MySubscriptionListener {
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let mut subscription = Subscription::new(
let mut my_subscription = Subscription::new(
SubscriptionMode::Merge,
Some(vec![
"item1".to_string(),
@ -220,17 +220,19 @@ async fn main() -> Result<(), Box<dyn Error>> {
Some(vec!["stock_name".to_string(), "last_price".to_string()]),
)?;
subscription.add_listener(Box::new(MySubscriptionListener {}));
subscription.set_data_adapter(Some(String::from("QUOTE_ADAPTER")))?;
subscription.set_requested_snapshot(Some(Snapshot::Yes))?;
my_subscription.set_data_adapter(Some(String::from("QUOTE_ADAPTER")))?;
my_subscription.set_requested_snapshot(Some(Snapshot::Yes))?;
my_subscription.add_listener(Box::new(MySubscriptionListener {}));
let client = LightstreamerClient::new(
let mut client = LightstreamerClient::new(
Some("http://push.lightstreamer.com/lightstreamer"),
Some("DEMO"),
)?;
println!("Subscription: {:?}", subscription);
client.subscribe(my_subscription);
println!("Client: {:?}", client);
client.connect();
Ok(())
}