diff --git a/api/test/simulated_network.h b/api/test/simulated_network.h index 132ebefe38..ed5fd83c2d 100644 --- a/api/test/simulated_network.h +++ b/api/test/simulated_network.h @@ -73,6 +73,8 @@ class NetworkSimulationInterface { // Retrieves all packets that should be delivered by the given receive time. virtual std::vector DequeueDeliverablePackets( int64_t receive_time_us) = 0; + // Returns time in microseconds when caller should call + // DequeueDeliverablePackets to get next set of packets to deliver. virtual absl::optional NextDeliveryTimeUs() const = 0; virtual ~NetworkSimulationInterface() = default; };