| 88 | } |
| 89 | |
| 90 | double Checkable::GetLastCheck() const |
| 91 | { |
| 92 | CheckResult::Ptr cr = GetLastCheckResult(); |
| 93 | double schedule_end = -1; |
| 94 | |
| 95 | if (cr) |
| 96 | schedule_end = cr->GetScheduleEnd(); |
| 97 | |
| 98 | return schedule_end; |
| 99 | } |
| 100 | |
| 101 | Checkable::ProcessingResult Checkable::ProcessCheckResult(const CheckResult::Ptr& cr, const WaitGroup::Ptr& producer, const MessageOrigin::Ptr& origin) |
| 102 | { |
no outgoing calls
no test coverage detected