File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
lib/jbotsim-core/src/main/java/io/jbotsim/core Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 2424import java .util .HashMap ;
2525
2626/**
27- * <p>The {@link Message} object simply encode a message exchanged by two {@link Node}s.</p>
27+ * <p>The {@link Message} object simply encodes a message exchanged by two {@link Node}s.</p>
2828 */
2929public final class Message extends Properties {
3030 protected Node sender ;
@@ -155,6 +155,14 @@ public String getFlag() {
155155 return flag ;
156156 }
157157
158+ /**
159+ * The retry mode status.
160+ * @return the retry mode status, as a boolean.
161+ */
162+ public boolean isRetryModeEnabled () {
163+ return this .retryMode ;
164+ }
165+
158166 @ Override
159167 public String toString () {
160168 return sender + " -> " + destination + ": " + content ;
You can’t perform that action at this time.
0 commit comments