![JAR search and dependency download from the Maven repository](/logo.png)
sdmxdl.ErrorListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
The newest version!
package sdmxdl;
import lombok.NonNull;
import java.io.IOException;
import java.util.function.BiConsumer;
@FunctionalInterface
public interface ErrorListener {
void accept(@NonNull S source, @NonNull String marker, @NonNull CharSequence message, @NonNull IOException error);
default @NonNull BiConsumer asBiConsumer(@NonNull S source, @NonNull String marker) {
return (message, error) -> accept(source, marker, message, error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy