| 301 | // Getters |
| 302 | int Handle::id() const { return mImpl ? mImpl->id() : 0; } |
| 303 | bool Handle::has_then() const { return mImpl ? mImpl->has_then() : false; } |
| 304 | bool Handle::has_catch() const { return mImpl ? mImpl->has_catch() : false; } |
| 305 | string Handle::trace_label() const { return mImpl ? mImpl->trace_label() : ""; } |
| 306 | TaskType Handle::type() const { return mImpl ? mImpl->type() : TaskType::kEveryMs; } |
no outgoing calls
no test coverage detected