(&self)
| 2988 | /// reject with a "Session closed" error. Idempotent. |
| 2989 | #[napi] |
| 2990 | pub async fn close(&self) { |
| 2991 | self.inner.close().await |
| 2992 | } |
| 2993 | |
| 2994 | /// Whether `close()` has been called on this agent. |
| 2995 | #[napi] |
no test coverage detected