aquatic: HandlerConfig: add comment

This commit is contained in:
Joakim Frostegård 2020-04-12 13:31:32 +02:00
parent ad7a8c46a9
commit cbae43e175

View file

@ -33,6 +33,8 @@ pub struct NetworkConfig {
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct HandlerConfig {
/// Maximum number of requests to receive from channel before locking
/// mutex and starting work
pub max_requests_per_iter: usize,
pub channel_recv_timeout_ms: u64,
}