summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-api/src/main/java/org/openecomp/sdc/notification/services/NotificationPropagationManager.java
blob: 7a1596eb9575f923d7e809d20445301525976519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.openecomp.sdc.notification.services;

import org.openecomp.sdc.notification.dtos.Event;

/**
 * @author avrahamg
 * @since July 09, 2017
 */
public interface NotificationPropagationManager {
    void notifySubscribers(Event event, String ... excludedSubscribers);
    void directNotification(Event event, String destinationId);
}