Class PostDownloadHandler
- java.lang.Object
-
- org.openstreetmap.josm.actions.downloadtasks.PostDownloadHandler
-
- All Implemented Interfaces:
Runnable
public class PostDownloadHandler extends Object implements Runnable
The post-download handler notifies user of potential errors that occurred.- Since:
- 2322
-
-
Field Summary
Fields Modifier and Type Field Description private Consumer<Collection<Object>>
errorReporter
private Future<?>
future
private static Set<String>
NO_DATA_ERROR_MESSAGES
private DownloadTask
task
-
Constructor Summary
Constructors Constructor Description PostDownloadHandler(DownloadTask task, Future<?> future)
Creates a newPostDownloadHandler
PostDownloadHandler(DownloadTask task, Future<?> future, Consumer<Collection<Object>> errorReporter)
Creates a newPostDownloadHandler
using a custom error reporter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static boolean
addNoDataErrorMessage(String message)
Adds a new translated error message indicating that no data has been downloaded.static boolean
isNoDataErrorMessage(Object message)
Determines if a translated error message indicates that no data has been downloaded.void
run()
-
-
-
Field Detail
-
task
private final DownloadTask task
-
errorReporter
private Consumer<Collection<Object>> errorReporter
-
NO_DATA_ERROR_MESSAGES
private static final Set<String> NO_DATA_ERROR_MESSAGES
-
-
Constructor Detail
-
PostDownloadHandler
public PostDownloadHandler(DownloadTask task, Future<?> future)
Creates a newPostDownloadHandler
- Parameters:
task
- the asynchronous download taskfuture
- the future on which the completion of the download task can be synchronized
-
PostDownloadHandler
public PostDownloadHandler(DownloadTask task, Future<?> future, Consumer<Collection<Object>> errorReporter)
Creates a newPostDownloadHandler
using a custom error reporter- Parameters:
task
- the asynchronous download taskfuture
- the future on which the completion of the download task can be synchronizederrorReporter
- a callback to inform about the number errors happened during the download task
-
-
Method Detail
-
addNoDataErrorMessage
public static boolean addNoDataErrorMessage(String message)
Adds a new translated error message indicating that no data has been downloaded.- Parameters:
message
- new translated error message indicating that no data has been downloaded.- Returns:
true
if the message was not already known- Since:
- 15358
-
isNoDataErrorMessage
public static boolean isNoDataErrorMessage(Object message)
Determines if a translated error message indicates that no data has been downloaded.- Parameters:
message
- translated error message to check- Returns:
true
if the message indicates that no data has been downloaded- Since:
- 15358
-
-