Major performace increase

This commit is contained in:
vanten-s 2023-10-12 22:01:17 +02:00
parent 34b2e0e5a9
commit 6626110758
Signed by: vanten-s
GPG key ID: DE3060396884D3F2
2 changed files with 2 additions and 2 deletions

View file

@ -36,9 +36,9 @@ pub fn listen_to_client(tx: mpsc::Sender<String>, rx: mpsc::Receiver<String>, po
} }
Err(_e) => {} Err(_e) => {}
} }
thread::sleep(Duration::from_millis(1));
} }
let _ = tx.send(String::from_utf8_lossy(&buffer).to_string()); let _ = tx.send(String::from_utf8_lossy(&buffer).to_string());
thread::sleep(Duration::from_millis(100));
} }
} }

View file

@ -51,9 +51,9 @@ pub fn write_to_server(
Ok(_) => {} Ok(_) => {}
Err(_e) => println!("Couldn't send {value}"), Err(_e) => println!("Couldn't send {value}"),
}; };
thread::sleep(Duration::from_millis(1));
} }
let _ = tx.send(dbg!(String::from_utf8_lossy(&buffer).to_string())); let _ = tx.send(dbg!(String::from_utf8_lossy(&buffer).to_string()));
thread::sleep(Duration::from_millis(100));
} }
} }