(&mut self, msg: User)
| 103 | async fn terminate(&mut self) {} |
| 104 | |
| 105 | async fn handle_message(&mut self, msg: User) -> ProcResult<User> { |
| 106 | |
| 107 | // ordering - partitioning based on 'fullname' |
| 108 | let pk = msg.fullname.clone(); |
| 109 | |
| 110 | // Dispatch to Batcher |
| 111 | ProcResult::Dispatch(msg, pk) |
| 112 | } |
| 113 | } |
| 114 | |
| 115 |
nothing calls this directly
no outgoing calls
no test coverage detected