(&mut self, msg: OwnedDeliveryResult)
| 108 | async fn terminate(&mut self) {} |
| 109 | |
| 110 | async fn handle_message(&mut self, msg: OwnedDeliveryResult) -> ProcResult<()> { |
| 111 | |
| 112 | match msg { |
| 113 | Some((partition, offset)) => { |
| 114 | |
| 115 | } |
| 116 | Err((kafka_err, msg)) => { |
| 117 | |
| 118 | // TODO: Push to dead letter or requeue |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | ProcResult::Continue |
| 123 | } |
| 124 | } |
| 125 | |
| 126 |
nothing calls this directly
no outgoing calls
no test coverage detected