| 64 | MonoTime time_completed; // Time the call handler completed. |
| 65 | |
| 66 | MonoDelta TotalDuration() const { |
| 67 | return time_completed - time_received; |
| 68 | } |
| 69 | |
| 70 | MonoDelta ProcessingDuration() const { |
| 71 | return time_completed - time_handled; |
no outgoing calls
no test coverage detected