We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f6f62e commit fea9b59Copy full SHA for fea9b59
rustecal-samples/pubsub/blob_send/src/main.rs
@@ -19,7 +19,7 @@ fn main() {
19
20
println!("Sent buffer filled with {}", counter);
21
22
- std::thread::sleep(std::time::Duration::from_millis(100));
+ std::thread::sleep(std::time::Duration::from_millis(500));
23
}
24
25
Ecal::finalize();
rustecal-samples/pubsub/hello_send/src/main.rs
@@ -12,9 +12,12 @@ fn main() {
12
while Ecal::ok() {
13
cnt += 1;
14
let msg = format!("HELLO WORLD FROM RUST ({})", cnt);
15
+
16
let wrapped = StringMessage(msg);
17
publisher.send(&wrapped);
18
println!("Sent: {}", wrapped.0);
std::thread::sleep(std::time::Duration::from_millis(500));
0 commit comments