Body: postfix _posted to posted sequence methods

This commit is contained in:
2025-09-15 08:33:49 -04:00
parent d1e4c1a2ea
commit e755383e72
+4 -4
View File
@@ -41,7 +41,7 @@ private:
Mind &parent; Mind &parent;
public: public:
void initializeReq1( void initializeReq1_posted(
[[maybe_unused]] std::shared_ptr<InitializeReq> context [[maybe_unused]] std::shared_ptr<InitializeReq> context
) )
{ {
@@ -115,7 +115,7 @@ public:
using InitializeReq::InitializeReq; using InitializeReq::InitializeReq;
public: public:
void finalizeReq1( void finalizeReq1_posted(
[[maybe_unused]] std::shared_ptr<FinalizeReq> context [[maybe_unused]] std::shared_ptr<FinalizeReq> context
) )
{ {
@@ -164,7 +164,7 @@ void Body::initializeReq(bodyLifetimeMgmtOpCbFn callback)
thread->getIoService().post( thread->getIoService().post(
std::bind( std::bind(
&InitializeReq::initializeReq1, &InitializeReq::initializeReq1_posted,
request.get(), request)); request.get(), request));
} }
@@ -191,7 +191,7 @@ void Body::finalizeReq(bodyLifetimeMgmtOpCbFn callback)
thread->getIoService().post( thread->getIoService().post(
std::bind( std::bind(
&FinalizeReq::finalizeReq1, &FinalizeReq::finalizeReq1_posted,
request.get(), request)); request.get(), request));
} }