Skip to content

Commit

Permalink
Bump channels' capacity from 1 to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
zeenix committed Sep 3, 2024
1 parent 15c37b9 commit e9217d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub(crate) mod item_impl;
pub(crate) mod item_struct;

const ALL_CHANNEL_CAPACITY: usize = 1;
const ALL_CHANNEL_CAPACITY: usize = 8;
const SIGNAL_CHANNEL_CAPACITY: usize = 8;
const BROADCAST_MAX_PUBLISHERS: usize = 1;
const BROADCAST_MAX_SUBSCRIBERS: usize = 16;

0 comments on commit e9217d8

Please sign in to comment.