`
Donald_Draper
  • 浏览: 986440 次
社区版块
存档分类
最新评论

MembershipKey定义

    博客分类:
  • NIO
nio 
阅读更多
package java.nio.channels;

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.io.IOException;

/**
 * A token representing the membership of an Internet Protocol (IP) multicast
 * group.
 *MembershipKey表示一个网络IP协议的多播分组成员信息token
 * <p> A membership key may represent a membership to receive all datagrams sent
 * to the group, or it may be [i]source-specific[/i], meaning that it
 * represents a membership that receives only datagrams from a specific source
 * address. Whether or not a membership key is source-specific may be determined
 * by invoking its {@link #sourceAddress() sourceAddress} method.
 *一个MembershipKey表示一个多播组成员接受发送到多播组的报文的关系,如果源地址确定,
 表示直接接受来至源地址的报文。我们可以通过#sourceAddress来判断源地址是否确定。
 * <p> A membership key is valid upon creation and remains valid until the
 * membership is dropped by invoking the {@link #drop() drop} method, or
 * the channel is closed. The validity of the membership key may be tested
 * by invoking its {@link #isValid() isValid} method.
 *一个多播组成员关系在创建时,是有效的,直到MembershipKey调用#drop方法,之前他都是有效。
 我们可以调用#isValid()来判断其是否有效。
 * <p> Where a membership key is not source-specific and the underlying operation
 * system supports source filtering, then the {@link #block block} and {@link
 * #unblock unblock} methods can be used to block or unblock multicast datagrams
 * from particular source addresses.
 *如果MembershipKey的源地址是不确定的,底层操作系统支持源地址过滤,调用#block和#unblock将会
 阻塞和解除阻塞从源地址发送过来的报文
 * @see MulticastChannel
 *
 * @since 1.7
 */
public abstract class MembershipKey {

    /**
     * Initializes a new instance of this class.
     */
    protected MembershipKey() {
    }

    /**
     * Tells whether or not this membership is valid.
     *判断一个MembershipKey是否有效
     * <p> A multicast group membership is valid upon creation and remains
     * valid until the membership is dropped by invoking the {@link #drop() drop}
     * method, or the channel is closed.
     *一个多播组成员关系在创建时,是有效的,直到MembershipKey调用#drop方法,之前他都是有效。
     * @return  {@code true} if this membership key is valid, {@code false}
     *          otherwise
     */
    public abstract boolean isValid();

    /**
     * Drop membership.
     *丢弃组成员关系membership
     * <p> If the membership key represents a membership to receive all datagrams
     * then the membership is dropped and the channel will no longer receive any
     * datagrams sent to the group. If the membership key is source-specific
     * then the channel will no longer receive datagrams sent to the group from
     * that source address.
     *如果MembershipKey表示,MembershipKey接受所有报文,当drop方法调用时,通道不在接受
     任何报文发送给多播组。如果MembershipKey的源地址是确定的,那么通道不在接受
     任何报文发送给源地址的多播组。
     * <p> After membership is dropped it may still be possible to receive
     * datagrams sent to the group. This can arise when datagrams are waiting to
     * be received in the socket's receive buffer. After membership is dropped
     * then the channel may {@link MulticastChannel#join join} the group again
     * in which case a new membership key is returned.
     *在多播成员关系drop之后,仍有可能接受发送到多播组的报文。则个可能引起socket的接收
     缓冲区的报文等待被接收。在多播成员关系drop之后,通道有可能调用MulticastChannel#join
     方法加入分组,这样一个新的MembershipKey将会被创建返回。
     * <p> Upon return, this membership object will be {@link #isValid() invalid}.
     * If the multicast group membership is already invalid then invoking this
     * method has no effect. Once a multicast group membership is invalid,
     * it remains invalid forever.
     drop多播成员关系drop之后,#isValid()方法将会返回fasle,即无效。如果MembershipKey已经无效,
     则调用此方将没有任何影响。一旦多播关系为无效的,则永久无效。
     */
    public abstract void drop();

    /**
     * Block multicast datagrams from the given source address.
     *阻塞从源地址发送过来的多播报文
     * <p> If this membership key is not source-specific, and the underlying
     * operating system supports source filtering, then this method blocks
     * multicast datagrams from the given source address. If the given source
     * address is already blocked then this method has no effect.
     * After a source address is blocked it may still be possible to receive
     * datagams from that source. This can arise when datagrams are waiting to
     * be received in the socket's receive buffer.
     *如果MembershipKey的源地址是不确定的,底层操作系统支持源地址过滤,此方法将会
     阻塞从源地址发送过来的多播报文。如果源地址已经被阻塞,再次调用任何影响。
     在源地址阻塞后,仍有可能接受源地址的报文。则个可能引起socket的接收
     缓冲区中的报文等待被接收。
     * @param   source
     *          The source address to block
     *
     * @return  This membership key
     *
     * @throws  IllegalArgumentException
     *          If the {@code source} parameter is not a unicast address or
     *          is not the same address type as the multicast group
     * @throws  IllegalStateException
     *          If this membership key is source-specific or is no longer valid
     * @throws  UnsupportedOperationException
     *          If the underlying operating system does not support source
     *          filtering
     * @throws  IOException
     *          If an I/O error occurs
     */
    public abstract MembershipKey block(InetAddress source) throws IOException;

    /**
     * Unblock multicast datagrams from the given source address that was
     * previously blocked using the {@link #block(InetAddress) block} method.
     *解除从源地址发送过来多播报文的阻塞
     * @param   source
     *          The source address to unblock
     *
     * @return  This membership key
     *
     * @throws  IllegalStateException
     *          If the given source address is not currently blocked or the
     *          membership key is no longer valid
     */
    public abstract MembershipKey unblock(InetAddress source);

    /**
     * Returns the channel for which this membership key was created. This
     * method will continue to return the channel even after the membership
     * becomes {@link #isValid invalid}.
     *返回创建多播成员关系key的通道,在多播成员关系key无效时,仍返回通道
     * @return  the channel
     */
    public abstract MulticastChannel channel();

    /**
     * Returns the multicast group for which this membership key was created.
     * This method will continue to return the group even after the membership
     * becomes {@link #isValid invalid}.
     *返回创建多播关系key的多播分组。在多播成员关系key无效时,仍返回分组地址信息
     * @return  the multicast group
     */
    public abstract InetAddress group();

    /**
     * Returns the network interface for which this membership key was created.
     * This method will continue to return the network interface even after the
     * membership becomes {@link #isValid invalid}.
     *返回创建多播成员关系key的网络接口信息。在多播成员关系key无效时,仍返回网络接口信息
     * @return  the network interface
     */
    public abstract NetworkInterface networkInterface();

    /**
     * Returns the source address if this membership key is source-specific,
     * or {@code null} if this membership is not source-specific.
     *如果多播成员关系key的源地址是确定的则返回相应的源地址,否则返回null
     * @return  The source address if this membership key is source-specific,
     *          otherwise {@code null}
     */
    public abstract InetAddress sourceAddress();
}

//NetworkInterface
package java.net;

import java.util.Enumeration;
import java.util.NoSuchElementException;
import sun.security.action.*;
import java.security.AccessController;

/**
 * This class represents a Network Interface made up of a name,
 * and a list of IP addresses assigned to this interface.
 * It is used to identify the local interface on which a multicast group
 * is joined.
 *
 * Interfaces are normally known by names such as "le0".
 *
 * @since 1.4
 */
public final class NetworkInterface {
    private String name;
    private String displayName;
    private int index;
    private InetAddress addrs[];
    private InterfaceAddress bindings[];
    private NetworkInterface childs[];
    private NetworkInterface parent = null;
    private boolean virtual = false;
    private static final NetworkInterface defaultInterface;
    private static final int defaultIndex; /* index of defaultInterface */
}

0
1
分享到:
评论

相关推荐

    多智能体一致性仿真 简单的多智能体一致性性仿真图,包含状态轨迹图和控制输入图 程序简单,所以便宜,但是有注释,都能看懂,适合初学者

    多智能体一致性仿真 简单的多智能体一致性性仿真图,包含状态轨迹图和控制输入图。 程序简单,所以便宜,但是有注释,都能看懂,适合初学者。

    小程序项目-基于微信小程序的微信小程序租房平台(包括源码,数据库,教程).zip

    Java小程序项目源码,该项目包含完整的前后端代码、数据库脚本和相关工具,简单部署即可运行。功能完善、界面美观、操作简单,具有很高的实际应用价值,非常适合作为Java毕业设计或Java课程设计使用。 所有项目均经过严格调试,确保可运行!下载后即可快速部署和使用。 1 适用场景: 毕业设计 期末大作业 课程设计 2 项目特点: 代码完整:详细代码注释,适合新手学习和使用 功能强大:涵盖常见的核心功能,满足大部分课程设计需求 部署简单:有基础的人,只需按照教程操作,轻松完成本地或服务器部署 高质量代码:经过严格测试,确保无错误,稳定运行 3 技术栈和工具 前端:小程序 后端框架:SSM/SpringBoot 开发环境:IntelliJ IDEA 数据库:MySQL(建议使用 5.7 版本,更稳定) 数据库可视化工具:Navicat 部署环境:Tomcat(推荐 7.x 或 8.x 版本),Maven

    模糊PID控制器的C语言实现.zip

    模糊PID控制器的C语言实现

    电子科技大学图书馆微信小程序_中国电子科技大学.zip

    电子科技大学图书馆微信小程序_中国电子科技大学

    武汉市新版劳动合同.doc

    武汉市新版劳动合同

    用于微信小程序的ProtoBuffer库.zip

    用于微信小程序的ProtoBuffer库

    WINCC 用VBS写MYSQL动作说明

    WINCC 用VBS写MYSQL动作说明

    039智能微电网PSO优化算法,比较全,推荐下载。matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    Stentiford 细化算法Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    含高比例分布式光伏的配电网集群电压协调控制 摘要:代码主要做的是基于网络划分的双层电压控制策略,通过优化光伏变流器的有功和无功输出功率实现光伏发电损失和线路有功损耗最小,在集群划分基础上,研究包含群内

    含高比例分布式光伏的配电网集群电压协调控制 摘要:代码主要做的是基于网络划分的双层电压控制策略,通过优化光伏变流器的有功和无功输出功率实现光伏发电损失和线路有功损耗最小,在集群划分基础上,研究包含群内自治优化和群间分布式协调的双层电压控制策略,集群自治优化控制通过交替更新群内最优解和平衡节点电压实现群内电压的实时快速控制。 长时间尺度的群间分布式协调控制基于交方向乘子法,通过相邻集群的有限边界数据交实现对分布式光伏输出功率的全局优化控制。 复现结果非常良好,结果图展示如下:

    springboot170图书电子商务网站的设计与实现.zip

    springboot170图书电子商务网站的设计与实现,含有完整的源码和报告文档

    客车驾驶员劳动合同.doc

    客车驾驶员劳动合同

    Bernsen 阈值方法的实现。.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    springboot164党员教育和管理系统.zip

    springboot164党员教育和管理系统,含有完整的源码和报告文档

    小区团购-JAVA-基于springboot小区团购管理设计与实现(毕业论文)

    以下是小区团购系统的功能描述,旨在为小区居民提供便捷的团购服务,以便于集中采购、节省开支和提高生活质量。 小区团购系统功能描述 1. 用户角色 管理员 商家 居民 2. 功能描述 管理员功能 用户管理 管理居民和商家的注册、审核、修改和删除。 设置不同用户的权限,确保系统安全性。 团购管理 创建、编辑和删除团购活动,包括商品信息、价格、起订量及截止时间。 审核商家提交的团购活动,确保商品质量和服务可靠性。 订单管理 监控所有团购订单的状态,包括未支付、已支付、配送中和完成等。 支持订单查询、修改和取消处理。 数据统计与分析 生成团购活动的销售报表和参与情况统计,帮助评估活动效果。 分析用户购买行为,以优化后续团购活动。 优惠活动管理 设置和管理促销活动(如满减、折扣、买赠等),吸引更多居民参与团购。 跟踪活动效果,调整策略以提升销售额。 商家功能 商家注册与管理 注册并创建商家账户,填写基本信息(如店铺名称、联系方式、地址等)。 提交商品信息,设置价格和库存,管理团购活动。 团购活动发布 创建新的团购活动,上传商品图片,详细描述和定价。 设置活动开始和结束时间,定义团购

    Multisim仿真TL494BUCK闭环,稳定输出5v,带软启动 电流限制为0.14A电流超过限制电压下降,为电流保护 软启动由4脚控制,示波器可看到输出 需要用Multisim14才能打开

    Multisim仿真TL494BUCK闭环,稳定输出5v,带软启动。 电流限制为0.14A电流超过限制电压下降,为电流保护。 软启动由4脚控制,示波器可看到输出。 需要用Multisim14才能打开。

    【热力学】基于matlab烤箱中烤面包的非稳态传热过程仿真【含Matlab源码 10961期】.zip

    Matlab领域上传的视频是由对应的完整代码运行得来的,完整代码皆可运行,亲测可用,适合小白; 1、从视频里可见完整代码的内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作

    springboot161基于springboot的公交线路查询系统.zip

    springboot161基于springboot的公交线路查询系统,含有完整的源码和报告文档

    微信小程序云增强SDK_xpmjs.zip

    微信小程序云增强SDK_xpmjs

    matlab实现飞翼无人机鲁棒控制-飞翼无人机-鲁棒控制-matlab

    内容概要:本文详细介绍了飞翼无人机的鲁棒控制原理及其在Matlab中的实现方法。飞翼无人机因构型特殊而面临诸多不确定性,导致飞行过程复杂。文中首先讨论了飞翼无人机鲁棒控制的概念和意义,重点描述了鲁棒控制‘最坏情况设计’的思想,以确保在各种环境下系统的稳定性。然后阐述了鲁棒控制的具体流程,涉及系统建模、不确定性分析、鲁棒控制器(如H∞、滑模、自适应控制)设计、仿真实验及硬件实验,最后提供了完整的Matlab源码与运行指南,并展示了开环和闭环系统的响应对比结果,证明所设计的鲁棒控制器的有效性。文章末尾对未来的研究方向提出了展望。 适合人群:从事航空航天工程的专业人士,尤其是专注于无人机构型控制领域的研究人员;以及有一定自动化控制理论基础并对Matlab仿真感兴趣的学习者。 使用场景及目标:本篇文章主要面向希望通过理论研究提升无人机控制能力的学者或从业者,帮助他们掌握从建模到验证一套完整的鲁棒控制方法论,并为解决实际工程问题奠定坚实理论基础。此外,对于学生来说,这是一个很好的案例教学材料。 其他说明:提供的仿真代码不仅可用于科研学习也可以作为工业项目中初步设计的一部分参考素材。

Global site tag (gtag.js) - Google Analytics