Java Code Examples for android.os.SystemClock#currentNetworkTimeClock()
The following examples show how to use
android.os.SystemClock#currentNetworkTimeClock() .
These examples are extracted from open source projects.
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 Project: android_9.0.0_r45 File: MultipathPolicyTracker.java License: Apache License 2.0 | 4 votes |
public Clock getClock() { return new BestClock(ZoneOffset.UTC, SystemClock.currentNetworkTimeClock(), Clock.systemUTC()); }
Example 2
Source Project: android_9.0.0_r45 File: NetworkStatsService.java License: Apache License 2.0 | 4 votes |
private static @NonNull Clock getDefaultClock() { return new BestClock(ZoneOffset.UTC, SystemClock.currentNetworkTimeClock(), Clock.systemUTC()); }