blob: 3f1747816c85ddef25b815340e9957446bf7201a [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.api.base.notification;
/**
* Manages registrations to a notification service.
*
* @since 1.0.0
* @author Matthias Koller, Peak Solution GmbH
*/
public interface NotificationService {
/**
* Registers a NotificationListener at the underlying notification service.
*
* @param registrationName An unique name used for the registration.
* @param filter A notification filter, specifying which events should
* be received by the listener.
* @param listener A notification listener which is informed if new
* events are received.
* @throws NotificationException In case the listener cannot be registered at
* the notification service.
*/
void register(String registrationName, NotificationFilter filter, NotificationListener listener)
throws NotificationException;
/**
* Unregisters a NotificationListener from the underlying notification service.
*
* @param registrationName The unique name previously used for the registration.
* @throws NotificationException In case the listener cannot be deregistered.
*/
void deregister(String registrationName) throws NotificationException;
/**
* Closes the NotificationManager and all registered NotificationListeners
*
* @param deregisterAll if true, all NotificationListeners are also deregistered
* before closing.
* @throws NotificationException In case the listeners cannot be deregistered or
* the manager cannot be closed.
*/
void close(boolean deregisterAll) throws NotificationException;
}