Lines Matching defs:group

39  * a <em>group</em> that is zero or more hosts identified by a single destination
55 * join a group and receive all multicast datagrams sent to the group. A channel
56 * may join several multicast groups and may join the same group on several
64 * is used to begin receiving datagrams sent to a group whose source address matches
67 * <em>cumulative</em> and this method may be invoked again with the same group
86 * multicast group corresponds to another protocol family. For example, it is
88 * socket can join an {@link StandardProtocolFamily#INET IPv4} multicast group and receive
89 * multicast datagrams sent to the group. </p></li>
98 * required to allow multiple members of the group to bind to the same
105 * // join multicast group on this interface, and also use this
114 * InetAddress group = InetAddress.getByName("225.4.5.6");
116 * MembershipKey key = dc.join(group, ni);
128 * <p> If the channel is a member of a multicast group then the membership
142 * Joins a multicast group to begin receiving all datagrams sent to the group,
145 * <p> If this channel is currently a member of the group on the given
147 * that membership, is returned. Otherwise this channel joins the group and
152 * the same group on more than one interface. An implementation may impose a
155 * @param group
158 * The network interface on which to join the group
163 * If the group parameter is not a {@link InetAddress#isMulticastAddress
164 * multicast} address, or the group parameter is an address type
168 * group on the interface
178 * method denies access to the multiast group
180 MembershipKey join(InetAddress group, NetworkInterface interf)
184 * Joins a multicast group to begin receiving datagrams sent to the group
187 * <p> If this channel is currently a member of the group on the given
190 * channel joins the group and the resulting new membership key is returned.
195 * again with the same group and interface to allow receiving datagrams sent
196 * by other source addresses to the group.
198 * @param group
201 * The network interface on which to join the group
208 * If the group parameter is not a {@link
210 * source parameter is not a unicast address, the group
212 * or the source parameter is not the same address type as the group
214 * If the channel is currently a member of the group on the given
226 * method denies access to the multiast group
228 MembershipKey join(InetAddress group, NetworkInterface interf, InetAddress source)