21#include <quentier/utility/cancelers/ICanceler.h>
25namespace quentier::utility::cancelers {
36 [[
nodiscard]]
bool isCanceled()
const noexcept override
38 return m_future.isCanceled();
The Result template class represents the bare bones result monad implementation which either contains...
Definition Result.h:38
Definition FutureCanceler.h:32
The ICanceler interface provides isCanceled method which can be used to check whether some processing...
Definition ICanceler.h:30