Body: postfix _posted to posted sequence methods
This commit is contained in:
@@ -41,7 +41,7 @@ private:
|
||||
Mind &parent;
|
||||
|
||||
public:
|
||||
void initializeReq1(
|
||||
void initializeReq1_posted(
|
||||
[[maybe_unused]] std::shared_ptr<InitializeReq> context
|
||||
)
|
||||
{
|
||||
@@ -115,7 +115,7 @@ public:
|
||||
using InitializeReq::InitializeReq;
|
||||
|
||||
public:
|
||||
void finalizeReq1(
|
||||
void finalizeReq1_posted(
|
||||
[[maybe_unused]] std::shared_ptr<FinalizeReq> context
|
||||
)
|
||||
{
|
||||
@@ -164,7 +164,7 @@ void Body::initializeReq(bodyLifetimeMgmtOpCbFn callback)
|
||||
|
||||
thread->getIoService().post(
|
||||
std::bind(
|
||||
&InitializeReq::initializeReq1,
|
||||
&InitializeReq::initializeReq1_posted,
|
||||
request.get(), request));
|
||||
}
|
||||
|
||||
@@ -191,7 +191,7 @@ void Body::finalizeReq(bodyLifetimeMgmtOpCbFn callback)
|
||||
|
||||
thread->getIoService().post(
|
||||
std::bind(
|
||||
&FinalizeReq::finalizeReq1,
|
||||
&FinalizeReq::finalizeReq1_posted,
|
||||
request.get(), request));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user