Returns true if a full message with same ID as the given message has been received by this host as the final recipient (at least once). @param m message we're interested of @return true if a message with the same ID has been received by this host as the final recipient.
(Message m)
| 210 | * this host as the final recipient. |
| 211 | */ |
| 212 | protected boolean isDeliveredMessage(Message m) { |
| 213 | return (this.deliveredMessages.containsKey(m.getId())); |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Returns <code>true</code> if the message has been blacklisted. Messages |
no test coverage detected