OpenCV 4.5.3(日本語機械翻訳)
async_promise.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef OPENCV_CORE_ASYNC_PROMISE_HPP
6 #define OPENCV_CORE_ASYNC_PROMISE_HPP
7
8 #include "../async.hpp"
9
10 #include "exception_ptr.hpp"
11
12 namespace cv {
13
22 class CV_EXPORTS AsyncPromise
23{
24 public:
25 ~AsyncPromise() CV_NOEXCEPT;
26 AsyncPromise() CV_NOEXCEPT;
27 explicit AsyncPromise(const AsyncPromise& o) CV_NOEXCEPT;
28 AsyncPromise& operator=(const AsyncPromise& o) CV_NOEXCEPT;
29 void release() CV_NOEXCEPT;
30
35
39 void setValue(InputArray value);
40
41 // TODO "move" setters
42
43 #if CV__EXCEPTION_PTR
47 void setException(std::exception_ptr exception);
48 #endif
49
53 void setException(const cv::Exception& exception);
54
55 #ifdef CV_CXX11
56 explicit AsyncPromise(AsyncPromise&& o) { p = o.p; o.p = NULL; }
57 AsyncPromise& operator=(AsyncPromise&& o) CV_NOEXCEPT { std::swap(p, o.p); return *this; }
58 #endif
59
60
61 // PImpl
62 typedef struct AsyncArray::Impl Impl; friend struct AsyncArray::Impl;
63 inline void* _getImpl() const CV_NOEXCEPT { return p; }
64 protected:
65 Impl* p;
66};
67
68
70} // namespace
71 #endif // OPENCV_CORE_ASYNC_PROMISE_HPP
Returns result of asynchronous operations
Definition: async.hpp:32
Provides result of asynchronous operations
Definition: async_promise.hpp:23
void setException(const cv::Exception &exception)
AsyncArray getArrayResult()
void setValue(InputArray value)
Class passed to an error.
Definition: core.hpp:119
CV_EXPORTS void swap(Mat &a, Mat &b)
Swaps two matrices
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75