Back to project page trafficcop.
The source code is released under:
Apache License
If you think the Android project trafficcop listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.willowtreeapps.trafficcop; /** * Created by evantatarka on 10/8/14. */ public interface DataUsageStatsProvider { public long getNanoTime(); public long getBytesTransmitted(); public long getBytesReceived(); }