| 654 | #endif |
| 655 | |
| 656 | static inline TDuration PollStep(const TInstant& deadLine, const TInstant& now) noexcept { |
| 657 | if (deadLine < now) { |
| 658 | return TDuration::Zero(); |
| 659 | } |
| 660 | |
| 661 | return Min(deadLine - now, TDuration::Seconds(1000)); |
| 662 | } |
| 663 | |
| 664 | template <class TBase> |
| 665 | class TGenericPoller: public TBase { |