IGNITE-3727: update javadoc
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/cf4cd05f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/cf4cd05f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/cf4cd05f Branch: refs/heads/ignite-3727-2 Commit: cf4cd05f9abdbeae096c6eb2d364dd140b06bbdc Parents: 1f31fdb Author: DmitriyGovorukhin <[email protected]> Authored: Mon Sep 5 09:34:49 2016 +0300 Committer: DmitriyGovorukhin <[email protected]> Committed: Mon Sep 5 09:34:49 2016 +0300 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/ignite/IgniteMessaging.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/cf4cd05f/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java b/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java index a9dc043..23b29f3 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java @@ -77,7 +77,7 @@ public interface IgniteMessaging extends IgniteAsyncSupport { /** * Sends given message with specified topic to the nodes in the underlying cluster group. - * When you invoke method, all listeners who were registered on the local node{@link #localListen} or {@link #remoteListen}, will be executing in the same thread. + * When you invoke method, all listeners who were registered on topic in the local node, will be executing in the same thread. * * @param topic Topic to send to, {@code null} for default topic. * @param msg Message to send. @@ -88,7 +88,7 @@ public interface IgniteMessaging extends IgniteAsyncSupport { /** * Sends given messages with the specified topic to the nodes in the underlying cluster group. - * When you invoke method, all listeners who were registered on local node {@link #localListen} or {@link #remoteListen}, will be executing in the same thread. + * When you invoke method, all listeners who were registered on topic in the local node, will be executing in the same thread. * * @param topic Topic to send to, {@code null} for default topic. * @param msgs Messages to send. Order of the sending is undefined. If the method produces
