Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added ability to force a resync via a new reInitialize method #126

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ public static TrueTime build() {
}

public void initialize() throws IOException {
initialize(_ntpHost);
initialize(_ntpHost, false);
}

public void reInitialize() throws IOException {
reInitialize(_ntpHost, true);
}

/**
Expand Down Expand Up @@ -119,8 +123,8 @@ public synchronized TrueTime withLoggingEnabled(boolean isLoggingEnabled) {

// -----------------------------------------------------------------------------------

protected void initialize(String ntpHost) throws IOException {
if (isInitialized()) {
protected void initialize(String ntpHost, boolean forceResync) throws IOException {
if (isInitialized() && !forceResync) {
TrueLog.i(TAG, "---- TrueTime already initialized from previous boot/init");
return;
}
Expand Down