org.opentcs.components.kernel.services.NotificationService Maven / Gradle / Ivy
/**
* Copyright (c) The openTCS Authors.
*
* This program is free software and subject to the MIT license. (For details,
* see the licensing information (LICENSE.txt) you should have received with
* this copy of the software.)
*/
package org.opentcs.components.kernel.services;
import java.util.List;
import java.util.function.Predicate;
import org.opentcs.access.KernelRuntimeException;
import org.opentcs.data.notification.UserNotification;
/**
* Provides methods concerning {@link UserNotification}s.
*
* @author Martin Grzenia (Fraunhofer IML)
*/
public interface NotificationService {
/**
* Returns a list of user notifications.
*
* @param predicate A filter predicate that accepts the user notifications to be returned. May be
* {@code null} to return all existing user notifications.
* @return A list of user notifications.
* @throws KernelRuntimeException In case there is an exception executing this method.
*/
List fetchUserNotifications(Predicate predicate)
throws KernelRuntimeException;
/**
* Publishes a user notification.
*
* @param notification The notification to be published.
* @throws KernelRuntimeException In case there is an exception executing this method.
*/
void publishUserNotification(UserNotification notification)
throws KernelRuntimeException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy