org.jgroups.util.Util.createDatagramSocket()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(165)

本文整理了Java中org.jgroups.util.Util.createDatagramSocket()方法的一些代码示例,展示了Util.createDatagramSocket()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.createDatagramSocket()方法的具体详情如下:
包路径:org.jgroups.util.Util
类名称:Util
方法名:createDatagramSocket

Util.createDatagramSocket介绍

[英]Creates a DatagramSocket bound to addr. If addr is null, socket won't be bound. If address is already in use, start_port will be incremented until a socket can be created.
[中]创建绑定到addr的DatagramSocket。如果addr为null,则不会绑定套接字。如果地址已在使用,则开始_端口将递增,直到可以创建套接字。

代码示例

代码示例来源:origin: wildfly/wildfly

public static synchronized short getNextMulticastPort(InetAddress bind_addr) throws Exception {
  short port = mcast_port;
  try {
    DatagramSocket sock = Util.createDatagramSocket(socket_factory, "jgroups.temp.resourcemgr.mcast_sock", bind_addr, port);
    port = (short) sock.getLocalPort();
    socket_factory.close(sock);
    return port;
  } finally {
    mcast_port = (short) (port + 1);
  }
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

public static synchronized short getNextMulticastPort(InetAddress bind_addr) throws Exception {
  short port = mcast_port;
  try {
    DatagramSocket sock = Util.createDatagramSocket(socket_factory, "jgroups.temp.resourcemgr.mcast_sock", bind_addr, port);
    port = (short) sock.getLocalPort();
    socket_factory.close(sock);
    return port;
  } finally {
    mcast_port = (short) (port + 1);
  }
}

相关文章

Util类方法