You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
440 B
12 lines
440 B
package de.anomic.server;
|
|
|
|
public interface serverUpdaterCallback {
|
|
public boolean updateYaCyIsPossible();
|
|
public void grantYaCyUpdate();
|
|
public String getYaCyUpdateReleaseVersion();
|
|
//public File getYaCyUpdateReleaseFile();
|
|
public String getYaCyUpdateSource();
|
|
/** Signal a user initiated YaCy shutdown (not restart!) to the updater so it can terminate itself */
|
|
public void signalYaCyShutdown();
|
|
public void signalYaCyRestart();
|
|
} |