We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a61e885 commit ec656faCopy full SHA for ec656fa
crates/ty_server/src/server.rs
@@ -63,6 +63,8 @@ impl Server {
63
crate::version(),
64
)?;
65
66
+ // The number 32 was chosen arbitrarily. The main goal was to have enough capacity to queue
67
+ // some responses before blocking.
68
let (main_loop_sender, main_loop_receiver) = crossbeam::channel::bounded(32);
69
let client = Client::new(main_loop_sender.clone(), connection.sender());
70
0 commit comments