\brief This is an asynchronous function which will block the queue/stream from progressing before continuing forward. It will not block the calling thread. \param queue The queue that will wait for the previous tasks to complete \returns the error code for the wait call
| 62 | /// |
| 63 | /// \returns the error code for the wait call |
| 64 | ErrorType enqueueWait(QueueType queue) noexcept { |
| 65 | return NativeEventPolicy::waitForEvent(&e_, queue); |
| 66 | } |
| 67 | |
| 68 | /// \brief This function will block the calling thread until the event has |
| 69 | /// completed |
no outgoing calls
no test coverage detected