on_post_batch -> on_batch_complete

This commit is contained in:
2025-08-24 11:00:20 -04:00
parent 6f1806d0b8
commit c0242317ed
5 changed files with 9 additions and 7 deletions

View File

@@ -107,6 +107,6 @@ public:
*
* @param batch A span of unique_ptrs to the connections in the batch.
*/
virtual void on_post_batch(std::span<std::unique_ptr<Connection>> /*batch*/) {
}
virtual void
on_batch_complete(std::span<std::unique_ptr<Connection>> /*batch*/) {}
};