Checks if the [`WebhookAppender`] has closed.
(&self)
| 255 | impl WebhookAppender { |
| 256 | /// Checks if the [`WebhookAppender`] has closed. |
| 257 | pub fn is_closed(&self) -> bool { |
| 258 | self.guard.is_closed() |
| 259 | } |
| 260 | |
| 261 | /// Appends updates to the linked webhook source. |
| 262 | pub async fn append(&self, updates: Vec<(Row, Diff)>) -> Result<(), AppendWebhookError> { |
no test coverage detected