No need to mut self

This commit is contained in:
Nikolay Kim 2024-07-19 22:14:02 +02:00
parent 7c6235cdc4
commit e9f3541726

View file

@ -38,7 +38,7 @@ impl<T> Server<T> {
}
/// Send item to worker pool
pub fn process(&mut self, item: T) -> Result<(), T> {
pub fn process(&self, item: T) -> Result<(), T> {
if self.shared.paused.load(Ordering::Acquire) {
Err(item)
} else if let Err(e) = self.cmd.try_send(ServerCommand::Item(item)) {