* Wait for input milliseconds for this task to be ready. */
| 203 | * Wait for input milliseconds for this task to be ready. |
| 204 | */ |
| 205 | std::future_status wait_for( |
| 206 | const std::chrono::milliseconds timeout_duration) const { |
| 207 | return f_.wait_for(timeout_duration); |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * Get the result of that task. Can be called multiple times from multiple |