(&self)
| 304 | } |
| 305 | |
| 306 | pub async fn start(&self) -> Result<()> { |
| 307 | self.manager |
| 308 | .start() |
| 309 | .await |
| 310 | .map_err(|e| anyhow::anyhow!("Lane manager start failed: {}", e)) |
| 311 | } |
| 312 | pub async fn set_lane_handler(&self, lane: SessionLane, config: LaneHandlerConfig) { |
| 313 | self.lane_handlers.write().await.insert(lane, config); |
| 314 | } |
no outgoing calls