Interface UpdateServiceAsync
-
public interface UpdateServiceAsync
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
checkDownloadStatus(com.google.gwt.user.client.rpc.AsyncCallback<int[]> callback)
void
checkPatch(com.google.gwt.user.client.rpc.AsyncCallback<GUIPatch[]> callback)
void
checkUpdate(com.google.gwt.user.client.rpc.AsyncCallback<GUIParameter[]> callback)
void
confirmPatch(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
void
confirmUpdate(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
void
downloadPatch(String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
downloadUpdate(String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
void
getPatchNotes(String patchFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
void
getStatus(String fileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
void
getUpdateNotes(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
void
loadPatch(com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
void
loadUpdate(com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
-
-
Method Detail
-
checkUpdate
void checkUpdate(com.google.gwt.user.client.rpc.AsyncCallback<GUIParameter[]> callback)
-
downloadUpdate
void downloadUpdate(String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
checkDownloadStatus
void checkDownloadStatus(com.google.gwt.user.client.rpc.AsyncCallback<int[]> callback)
-
getUpdateNotes
void getUpdateNotes(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
-
confirmUpdate
void confirmUpdate(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
checkPatch
void checkPatch(com.google.gwt.user.client.rpc.AsyncCallback<GUIPatch[]> callback)
-
confirmPatch
void confirmPatch(String updateFileName, com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
getPatchNotes
void getPatchNotes(String patchFileName, com.google.gwt.user.client.rpc.AsyncCallback<String[]> callback)
-
downloadPatch
void downloadPatch(String id, String fileName, long fileSize, com.google.gwt.user.client.rpc.AsyncCallback<Void> callback)
-
loadUpdate
void loadUpdate(com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
loadPatch
void loadPatch(com.google.gwt.user.client.rpc.AsyncCallback<String> callback)
-
-