Advance the subscriber cursor to `op_hlc` and persist. Delegates to `SubscriberMap::mark_sent`.
(map: &SubscriberMap, session_id: &str, array_name: &str, op_hlc: Hlc)
| 24 | /// |
| 25 | /// Delegates to `SubscriberMap::mark_sent`. |
| 26 | pub fn mark_sent(map: &SubscriberMap, session_id: &str, array_name: &str, op_hlc: Hlc) { |
| 27 | map.mark_sent(session_id, array_name, op_hlc); |
| 28 | } |
| 29 | |
| 30 | #[cfg(test)] |
| 31 | mod tests { |
no test coverage detected