[jboss-jira] [JBoss JIRA] Updated: (JGRP-900) Address: remove isMulticastAddress()
Bela Ban (JIRA)
jira-events at lists.jboss.org
Mon Feb 16 09:44:44 EST 2009
[ https://jira.jboss.org/jira/browse/JGRP-900?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Bela Ban updated JGRP-900:
--------------------------
Fix Version/s: 3.0
(was: 2.8)
Potentially breaks existing code using Address.
Currently, UUIDs will always return false for isMulticastAddress(). I have not detected a single case where a non-null address is actually a multicast address !
> Address: remove isMulticastAddress()
> ------------------------------------
>
> Key: JGRP-900
> URL: https://jira.jboss.org/jira/browse/JGRP-900
> Project: JGroups
> Issue Type: Task
> Reporter: Bela Ban
> Assignee: Bela Ban
> Fix For: 3.0
>
>
> With logical addresses, we don't need this anymore:
> Address dest=msg.getDest();
> boolean mcast=dest == null || dest.isMulticastAddress();
> should be changed to
> boolean mcast=msg.isMulticastMessage(); // or isGroupMessage() ?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list