org.apache.dubbo.common.URL.toInetSocketAddress()方法的使用及代码示例

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

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

URL.toInetSocketAddress介绍

暂无

代码示例

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress getLocalAddress() {
  return url.toInetSocketAddress();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress toInetSocketAddress() {
  return super.toInetSocketAddress();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress toInetSocketAddress() {
  return super.toInetSocketAddress();
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress getLocalAddress() {
  return url.toInetSocketAddress();
}

代码示例来源:origin: apache/incubator-dubbo

private void changed() throws RemotingException {
  try {
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      connect(URL.valueOf(line));
    }
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

private void changed() throws RemotingException {
  try {
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      connect(URL.valueOf(line));
    }
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress getRemoteAddress() {
  Channel channel = getChannel();
  if (channel == null) {
    return getUrl().toInetSocketAddress();
  }
  return channel.getRemoteAddress();
}

代码示例来源:origin: apache/incubator-dubbo

private void changed() throws RemotingException {
  try {
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      connect(URL.valueOf(line));
    }
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void leave(URL url) throws RemotingException {
  super.leave(url);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    List<String> saves = new ArrayList<String>();
    for (String line : lines) {
      if (full.equals(line)) {
        return;
      }
      saves.add(line);
    }
    IOUtils.appendLines(file, saves.toArray(new String[0]));
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void leave(URL url) throws RemotingException {
  super.leave(url);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    List<String> saves = new ArrayList<String>();
    for (String line : lines) {
      if (full.equals(line)) {
        return;
      }
      saves.add(line);
    }
    IOUtils.appendLines(file, saves.toArray(new String[0]));
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void leave(URL url) throws RemotingException {
  super.leave(url);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    List<String> saves = new ArrayList<String>();
    for (String line : lines) {
      if (full.equals(line)) {
        return;
      }
      saves.add(line);
    }
    IOUtils.appendLines(file, saves.toArray(new String[0]));
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public void leave(URL url) throws RemotingException {
  super.leave(url);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    List<String> saves = new ArrayList<String>();
    for (String line : lines) {
      if (full.equals(line)) {
        return;
      }
      saves.add(line);
    }
    IOUtils.appendLines(file, saves.toArray(new String[0]));
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public InetSocketAddress getRemoteAddress() {
  Channel channel = getChannel();
  if (channel == null) {
    return getUrl().toInetSocketAddress();
  }
  return channel.getRemoteAddress();
}

代码示例来源:origin: apache/incubator-dubbo

private void changed() throws RemotingException {
  try {
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      connect(URL.valueOf(line));
    }
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public Peer join(URL url, ChannelHandler handler) throws RemotingException {
  Peer peer = super.join(url, handler);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      if (full.equals(line)) {
        return peer;
      }
    }
    IOUtils.appendLines(file, new String[]{full});
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
  return peer;
}

代码示例来源:origin: apache/incubator-dubbo

public ExchangePeer joinExchange(URL url, ExchangeHandler handler) throws RemotingException {
  ExchangePeer peer = super.join(url, handler);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      if (full.equals(line)) {
        return peer;
      }
    }
    IOUtils.appendLines(file, new String[]{full});
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
  return peer;
}

代码示例来源:origin: apache/incubator-dubbo

public ExchangePeer joinExchange(URL url, ExchangeHandler handler) throws RemotingException {
  ExchangePeer peer = super.join(url, handler);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      if (full.equals(line)) {
        return peer;
      }
    }
    IOUtils.appendLines(file, new String[]{full});
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
  return peer;
}

代码示例来源:origin: apache/incubator-dubbo

@Override
public Peer join(URL url, ChannelHandler handler) throws RemotingException {
  Peer peer = super.join(url, handler);
  try {
    String full = url.toFullString();
    String[] lines = IOUtils.readLines(file);
    for (String line : lines) {
      if (full.equals(line)) {
        return peer;
      }
    }
    IOUtils.appendLines(file, new String[]{full});
  } catch (IOException e) {
    throw new RemotingException(new InetSocketAddress(NetUtils.getLocalHost(), 0), getUrl().toInetSocketAddress(), e.getMessage(), e);
  }
  return peer;
}

代码示例来源:origin: apache/incubator-dubbo

public AbstractServer(URL url, ChannelHandler handler) throws RemotingException {
  super(url, handler);
  localAddress = getUrl().toInetSocketAddress();
  String bindIp = getUrl().getParameter(Constants.BIND_IP_KEY, getUrl().getHost());
  int bindPort = getUrl().getParameter(Constants.BIND_PORT_KEY, getUrl().getPort());
  if (url.getParameter(Constants.ANYHOST_KEY, false) || NetUtils.isInvalidLocalHost(bindIp)) {
    bindIp = Constants.ANYHOST_VALUE;
  }
  bindAddress = new InetSocketAddress(bindIp, bindPort);
  this.accepts = url.getParameter(Constants.ACCEPTS_KEY, Constants.DEFAULT_ACCEPTS);
  this.idleTimeout = url.getParameter(Constants.IDLE_TIMEOUT_KEY, Constants.DEFAULT_IDLE_TIMEOUT);
  try {
    doOpen();
    if (logger.isInfoEnabled()) {
      logger.info("Start " + getClass().getSimpleName() + " bind " + getBindAddress() + ", export " + getLocalAddress());
    }
  } catch (Throwable t) {
    throw new RemotingException(url.toInetSocketAddress(), null, "Failed to bind " + getClass().getSimpleName()
        + " on " + getLocalAddress() + ", cause: " + t.getMessage(), t);
  }
  //fixme replace this with better method
  DataStore dataStore = ExtensionLoader.getExtensionLoader(DataStore.class).getDefaultExtension();
  executor = (ExecutorService) dataStore.get(Constants.EXECUTOR_SERVICE_COMPONENT_KEY, Integer.toString(url.getPort()));
}

代码示例来源:origin: apache/incubator-dubbo

public AbstractServer(URL url, ChannelHandler handler) throws RemotingException {
  super(url, handler);
  localAddress = getUrl().toInetSocketAddress();
  String bindIp = getUrl().getParameter(Constants.BIND_IP_KEY, getUrl().getHost());
  int bindPort = getUrl().getParameter(Constants.BIND_PORT_KEY, getUrl().getPort());
  if (url.getParameter(Constants.ANYHOST_KEY, false) || NetUtils.isInvalidLocalHost(bindIp)) {
    bindIp = Constants.ANYHOST_VALUE;
  }
  bindAddress = new InetSocketAddress(bindIp, bindPort);
  this.accepts = url.getParameter(Constants.ACCEPTS_KEY, Constants.DEFAULT_ACCEPTS);
  this.idleTimeout = url.getParameter(Constants.IDLE_TIMEOUT_KEY, Constants.DEFAULT_IDLE_TIMEOUT);
  try {
    doOpen();
    if (logger.isInfoEnabled()) {
      logger.info("Start " + getClass().getSimpleName() + " bind " + getBindAddress() + ", export " + getLocalAddress());
    }
  } catch (Throwable t) {
    throw new RemotingException(url.toInetSocketAddress(), null, "Failed to bind " + getClass().getSimpleName()
        + " on " + getLocalAddress() + ", cause: " + t.getMessage(), t);
  }
  //fixme replace this with better method
  DataStore dataStore = ExtensionLoader.getExtensionLoader(DataStore.class).getDefaultExtension();
  executor = (ExecutorService) dataStore.get(Constants.EXECUTOR_SERVICE_COMPONENT_KEY, Integer.toString(url.getPort()));
}

相关文章

微信公众号

最新文章

更多