(&self, lane: SessionLane, config: LaneHandlerConfig)
| 23 | } |
| 24 | |
| 25 | pub(super) async fn set_lane_handler(&self, lane: SessionLane, config: LaneHandlerConfig) { |
| 26 | if let Some(queue) = &self.session.command_queue { |
| 27 | queue.set_lane_handler(lane, config).await; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | pub(super) async fn complete_external_task( |
| 32 | &self, |
no outgoing calls