We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a44a1 commit 2cb36e7Copy full SHA for 2cb36e7
1 file changed
examples/full/src/cli.rs
@@ -22,7 +22,7 @@
22
// SOFTWARE.
23
//
24
// File created: 2024-02-05
25
-// Last updated: 2024-06-01
+// Last updated: 2024-10-13
26
27
28
use clap::{value_parser, ArgAction, Parser, Subcommand};
@@ -58,11 +58,12 @@ pub(crate) struct Cli {
58
)]
59
n_threads: usize,
60
61
- /// The maximum amount of messages that can be accumulated in the thread channels before holding.
+ /// The maximum capacity of the thread channel (in number of messages).
62
#[arg(
63
short = 'C',
64
long = "thread-channel-capacity",
65
action = ArgAction::Set,
66
+ default_value = "32",
67
value_parser = value_parser!(usize),
68
required = false,
69
0 commit comments