IGNITE-3727: added comment for message send method, details behavior
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1f31fdb4 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1f31fdb4 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1f31fdb4 Branch: refs/heads/ignite-3727-2 Commit: 1f31fdb47b7b0f8d621ee1c96927038591cd369d Parents: bb899bd Author: DmitriyGovorukhin <[email protected]> Authored: Fri Sep 2 17:15:44 2016 +0300 Committer: DmitriyGovorukhin <[email protected]> Committed: Fri Sep 2 17:15:44 2016 +0300 ---------------------------------------------------------------------- modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/1f31fdb4/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 ab554af..a9dc043 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteMessaging.java @@ -77,6 +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. * * @param topic Topic to send to, {@code null} for default topic. * @param msg Message to send. @@ -87,6 +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. * * @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
