aboutsummaryrefslogtreecommitdiff
path: root/mod/tenant-service.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-05-17 17:27:44 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-05-21 11:03:22 +0300
commit57f6378aea619ceb07b935012772bd4698e6a2be (patch)
treec7df31f1386febf3ba570bc2e3cd2ef551ae68f5 /mod/tenant-service.hxx
parent19c8efe49f23569a53e928488c460e0d3b20cf8a (diff)
Add support for build_unloaded() notification for tenant-associated services
Diffstat (limited to 'mod/tenant-service.hxx')
-rw-r--r--mod/tenant-service.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/tenant-service.hxx b/mod/tenant-service.hxx
index 2ec9cf6..48f525a 100644
--- a/mod/tenant-service.hxx
+++ b/mod/tenant-service.hxx
@@ -124,13 +124,13 @@ namespace brep
// This notification is only made on unloaded CI requests created with the
// ci_start::create() call and until they are loaded with ci_start::load()
- // or, alternatively, ci_start::abandon().
+ // or, alternatively, abandoned with ci_start::abandon().
//
class tenant_service_build_unloaded: public virtual tenant_service_base
{
public:
virtual function<optional<string> (const tenant_service&)>
- build_unloaded (const tenant_service&,
+ build_unloaded (tenant_service&&,
const diag_epilogue& log_writer) const noexcept = 0;
};