D++ (DPP)
C++ Discord API Bot Library
dpp::detail::task::final_awaiter< R > Struct Template Reference

The object automatically co_await-ed at the end of a task. Ensures nested coroutine chains are resolved, and the promise_t cleans up if it needs to. More...

#include <task.h>

Public Member Functions

bool await_ready () const noexcept
 Always suspend at the end of the task. This allows us to clean up and resume the parent. More...
 
std_coroutine::coroutine_handle await_suspend (handle_t< R > handle) const noexcept
 The suspension logic of the coroutine when it finishes. Always suspend the caller, meaning cleaning up the handle is on us. More...
 
void await_resume () const noexcept
 Function called when this object is co_awaited by the standard library at the end of final_suspend. Do nothing, return nothing. More...
 

Detailed Description

template<typename R>
struct dpp::detail::task::final_awaiter< R >

The object automatically co_await-ed at the end of a task. Ensures nested coroutine chains are resolved, and the promise_t cleans up if it needs to.

Awaitable returned from task::promise_t's final_suspend. Resumes the parent and cleans up its handle if needed.

Template Parameters
RReturn type of the task

Member Function Documentation

◆ await_ready()

template<typename R >
bool dpp::detail::task::final_awaiter< R >::await_ready ( ) const
inlinenoexcept

Always suspend at the end of the task. This allows us to clean up and resume the parent.

◆ await_resume()

template<typename R >
void dpp::detail::task::final_awaiter< R >::await_resume ( ) const
inlinenoexcept

Function called when this object is co_awaited by the standard library at the end of final_suspend. Do nothing, return nothing.

◆ await_suspend()

template<typename R >
std_coroutine::coroutine_handle dpp::detail::task::final_awaiter< R >::await_suspend ( handle_t< R >  handle) const
noexcept

The suspension logic of the coroutine when it finishes. Always suspend the caller, meaning cleaning up the handle is on us.

Parameters
handleThe handle of this coroutine
Returns
std::coroutine_handle<> Handle to resume, which is either the parent if present or std::noop_coroutine() otherwise
D++ Library version 10.0.30D++ Library version 10.0.29D++ Library version 10.0.28D++ Library version 10.0.27D++ Library version 10.0.26D++ Library version 10.0.25D++ Library version 10.0.24D++ Library version 10.0.23D++ Library version 10.0.22D++ Library version 10.0.21D++ Library version 10.0.20D++ Library version 10.0.19D++ Library version 10.0.18D++ Library version 10.0.17D++ Library version 10.0.16D++ Library version 10.0.15D++ Library version 10.0.14D++ Library version 10.0.13D++ Library version 10.0.12D++ Library version 10.0.11D++ Library version 10.0.10D++ Library version 10.0.9D++ Library version 10.0.8D++ Library version 10.0.7D++ Library version 10.0.6D++ Library version 10.0.5D++ Library version 10.0.4D++ Library version 10.0.3D++ Library version 10.0.2D++ Library version 10.0.1D++ Library version 10.0.0D++ Library version 9.0.19D++ Library version 9.0.18D++ Library version 9.0.17D++ Library version 9.0.16D++ Library version 9.0.15D++ Library version 9.0.14D++ Library version 9.0.13D++ Library version 9.0.12D++ Library version 9.0.11D++ Library version 9.0.10D++ Library version 9.0.9D++ Library version 9.0.8D++ Library version 9.0.7D++ Library version 9.0.6D++ Library version 9.0.5D++ Library version 9.0.4D++ Library version 9.0.3D++ Library version 9.0.2D++ Library version 9.0.1D++ Library version 9.0.0D++ Library version 1.0.2D++ Library version 1.0.1D++ Library version 1.0.0