X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-common-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fcommon%2Fapi%2Fnotify%2FNotificationPublishService.java;h=0dd04d539c93617d95d4f6bffc834dc4c99947f8;hp=bb866f276e713151ccf18b0e57e589c65633647f;hb=b33bed119ba2777d48b07fd3c8e9c337c1974518;hpb=17d82f582a6bc13c78be3b19954ff8c021180e93 diff --git a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/notify/NotificationPublishService.java b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/notify/NotificationPublishService.java index bb866f276e..0dd04d539c 100644 --- a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/notify/NotificationPublishService.java +++ b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/notify/NotificationPublishService.java @@ -15,7 +15,7 @@ import java.util.concurrent.ExecutorService; * Users of this interface can publish any YANG-modeled notification which will * be delivered to all subscribed listeners. *

- * Prefered way of publishing of notifications is done by invoking {@link #publish(Object)}. + * Preferred way of publishing of notifications is done by invoking {@link #publish(Object)}. * *

You may consider using {@link #publish(Object, ExecutorService)} if and only if * your use-case requires customized execution policy or run-to-completion @@ -50,7 +50,7 @@ public interface NotificationPublishService { * Publishes a notification and notifies subscribed listeners. All listener * notifications are done via the provided executor. *

- * Note: Use only if ineccessary. Consider using + * Note: Use only if necessary. Consider using * {@link #publish(Object)} for most use-cases. * *