public interface StartDownloadCallback extends BrowserAsyncCallback<StartDownloadCallback.Params,StartDownloadCallback.Action>
The StartDownloadCallback.Params
contain all information about the file which is about to be downloaded.
Use the StartDownloadCallback.Action.download(Path)
method to download this file into the particular
directory.
Use the StartDownloadCallback.Action.cancel()
method to suppress file download.
Modifier and Type | Interface and Description |
---|---|
static class |
StartDownloadCallback.Action
An action providing a response to the
StartDownloadCallback . |
static interface |
StartDownloadCallback.Params
The parameters of the
StartDownloadCallback . |
on