diff options
author | Ingo Klöcker <[email protected]> | 2020-10-21 16:03:46 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2020-10-23 11:50:16 +0000 |
commit | 74c8131d809be49d64f482961fee1e6e0dbe4f4f (patch) | |
tree | 01712167167e7bf0995d5440e893cdd3cc83344d /lang/cpp/src/context.cpp | |
parent | Add Assuan transaction that forwards status lines to another object (diff) | |
download | gpgme-74c8131d809be49d64f482961fee1e6e0dbe4f4f.tar.gz gpgme-74c8131d809be49d64f482961fee1e6e0dbe4f4f.zip |
cpp: Add support for gpgme_cancel
* lang/cpp/src/context.cpp, lang/cpp/context.h
(Context::cancelPendingOperationImmediately): New.
* NEWS: Mention added API
--
This allows immediate canceling of running operations, e.g. when a
thread with a long running operation (like SCD DEVINFO --watch) is
going to be terminated (on application shutdown).
GnuPG-bug-id: 5066
Diffstat (limited to 'lang/cpp/src/context.cpp')
-rw-r--r-- | lang/cpp/src/context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lang/cpp/src/context.cpp b/lang/cpp/src/context.cpp index 6dd6b6db..e868d387 100644 --- a/lang/cpp/src/context.cpp +++ b/lang/cpp/src/context.cpp @@ -1343,6 +1343,11 @@ Error Context::cancelPendingOperation() return Error(gpgme_cancel_async(d->ctx)); } +Error Context::cancelPendingOperationImmediately() +{ + return Error(gpgme_cancel(d->ctx)); +} + bool Context::poll() { gpgme_error_t e = GPG_ERR_NO_ERROR; |