mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
No need to mut self
This commit is contained in:
parent
7c6235cdc4
commit
e9f3541726
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue