com.github.triceo.robozonky.app.investing.DaemonRuntimeExceptionHandler Maven / Gradle / Ivy
/*
* Copyright 2017 Lukáš Petrovický
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.triceo.robozonky.app.investing;
import java.util.function.Consumer;
import com.github.triceo.robozonky.api.notifications.RemoteOperationFailedEvent;
import com.github.triceo.robozonky.api.notifications.RoboZonkyDaemonFailedEvent;
import com.github.triceo.robozonky.app.notifications.Events;
import com.github.triceo.robozonky.app.util.RuntimeExceptionHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
final class DaemonRuntimeExceptionHandler extends RuntimeExceptionHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(DaemonRuntimeExceptionHandler.class);
@Override
protected Consumer getCommunicationFailureHandler() {
return (in) -> {
DaemonRuntimeExceptionHandler.LOGGER.warn("Caught remote exception, continuing operation.", in);
Events.fire(new RemoteOperationFailedEvent(in));
};
}
@Override
protected Consumer getRemoteFailureHandler() {
return (in) -> {
DaemonRuntimeExceptionHandler.LOGGER.warn("Caught remote exception, continuing operation.", in);
Events.fire(new RoboZonkyDaemonFailedEvent(in));
};
}
@Override
protected Consumer getOtherFailureHandler() {
return (in) -> {
DaemonRuntimeExceptionHandler.LOGGER.warn("Caught unexpected exception, continuing operation.", in);
Events.fire(new RoboZonkyDaemonFailedEvent(in));
};
}
}