MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ initial_suspend()

template<typename RoutineType >
std::suspend_never MayaFlux::Vruta::routine_promise< RoutineType >::initial_suspend ( )
inline

Determines whether the coroutine suspends immediately upon creation.

Returns
A suspend never awaitable, meaning the coroutine begins execution immediately

By returning std::suspend_never, this method indicates that the coroutine should start executing as soon as it's created, rather than waiting for an explicit resume call.

Definition at line 48 of file Promise.hpp.

48{ return {}; }