Add session filter
(mut self, id: impl Into<String>)
| 95 | |
| 96 | /// Add session filter |
| 97 | pub fn with_session(mut self, id: impl Into<String>) -> Self { |
| 98 | self.session_id = Some(id.into()); |
| 99 | self |
| 100 | } |
| 101 | |
| 102 | /// Add skill filter (supports glob patterns) |
| 103 | pub fn with_skill(mut self, name: impl Into<String>) -> Self { |
no outgoing calls