(
&self,
items: Vec<ApiItem>,
informant: NodeId,
)
| 310 | #[async_trait::async_trait] |
| 311 | impl<S: EventService> EventService for Arc<S> { |
| 312 | async fn insert_many( |
| 313 | &self, |
| 314 | items: Vec<ApiItem>, |
| 315 | informant: NodeId, |
| 316 | ) -> Result<Vec<EventInsertResult>> { |
| 317 | self.as_ref().insert_many(items, informant).await |
| 318 | } |
| 319 | |
| 320 | async fn range_with_values( |
| 321 | &self, |