Java Code Examples for android.os.SystemClock#currentNetworkTimeClock()
The following examples show how to use
android.os.SystemClock#currentNetworkTimeClock() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MultipathPolicyTracker.java From android_9.0.0_r45 with Apache License 2.0 | 4 votes |
public Clock getClock() { return new BestClock(ZoneOffset.UTC, SystemClock.currentNetworkTimeClock(), Clock.systemUTC()); }
Example 2
Source File: NetworkStatsService.java From android_9.0.0_r45 with Apache License 2.0 | 4 votes |
private static @NonNull Clock getDefaultClock() { return new BestClock(ZoneOffset.UTC, SystemClock.currentNetworkTimeClock(), Clock.systemUTC()); }