io.pkts.Clock Maven / Gradle / Ivy
/**
*
*/
package io.pkts;
/**
* The wall clock whose time is driven by the timestamps of the captured packets
* in the pcap file.
*
* @author [email protected]
*/
public interface Clock {
long currentTimeMillis();
}