* Wait for input milliseconds for this task to be ready. */
| 130 | * Wait for input milliseconds for this task to be ready. |
| 131 | */ |
| 132 | std::future_status wait_for( |
| 133 | const std::chrono::milliseconds timeout_duration) const { |
| 134 | return f_.wait_for(timeout_duration); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Get the result of that task. Can only be used once. Only accessible from |
no outgoing calls
no test coverage detected