| 240 | } |
| 241 | |
| 242 | Event::Status HostExecutor::PollForEventStatus(Event *event) { |
| 243 | absl::Notification ¬ification = *AsHostEvent(event)->notification(); |
| 244 | return notification.HasBeenNotified() ? Event::Status::kComplete |
| 245 | : Event::Status::kPending; |
| 246 | } |
| 247 | |
| 248 | bool HostExecutor::StartTimer(Stream *stream, Timer *timer) { |
| 249 | dynamic_cast<HostTimer *>(timer->implementation())->Start(stream); |
nothing calls this directly
no test coverage detected