org.cybergarage.upnp.Device.notifyWait()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.5k)|赞(0)|评价(0)|浏览(89)

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

Device.notifyWait介绍

暂无

代码示例

代码示例来源:origin: i2p/i2p.i2p

public void announce() {
  notifyWait();
  InetAddress[] binds = getDeviceData().getHTTPBindAddress();
  String[] bindAddresses;
  if (binds != null) {
    bindAddresses = new String[binds.length];
    for (int i = 0; i < binds.length; i++) {
      bindAddresses[i] = binds[i].getHostAddress();
    }
  } else {
    int nHostAddrs = HostInterface.getNHostAddresses();
    bindAddresses = new String[nHostAddrs];
    for (int n = 0; n < nHostAddrs; n++) {
      bindAddresses[n] = HostInterface.getHostAddress(n);
    }
  }
  for (int j = 0; j < bindAddresses.length; j++) {
    if (bindAddresses[j] == null || bindAddresses[j].length() == 0)
      continue;
    int ssdpCount = getSSDPAnnounceCount();
    for (int i = 0; i < ssdpCount; i++)
      announce(bindAddresses[j]);
  }
}

代码示例来源:origin: i2p/i2p.i2p

public void byebye(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  
  String devNT = getNotifyServiceTypeNT();            
  String devUSN = getNotifyServiceTypeUSN();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setNTS(NTS.BYEBYE);
  ssdpReq.setNT(devNT);
  ssdpReq.setUSN(devUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: i2p/i2p.i2p

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void announce() {
  notifyWait();
  InetAddress[] binds = getDeviceData().getHTTPBindAddress();
  String[] bindAddresses;
  if (binds != null) {
    bindAddresses = new String[binds.length];
    for (int i = 0; i < binds.length; i++) {
      bindAddresses[i] = binds[i].getHostAddress();
    }
  } else {
    int nHostAddrs = HostInterface.getNHostAddresses();
    bindAddresses = new String[nHostAddrs];
    for (int n = 0; n < nHostAddrs; n++) {
      bindAddresses[n] = HostInterface.getHostAddress(n);
    }
  }
  for (int j = 0; j < bindAddresses.length; j++) {
    if (bindAddresses[j] == null || bindAddresses[j].length() == 0)
      continue;
    int ssdpCount = getSSDPAnnounceCount();
    for (int i = 0; i < ssdpCount; i++)
      announce(bindAddresses[j]);
  }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void announce() {
  notifyWait();
  InetAddress[] binds = getDeviceData().getHTTPBindAddress();
  String[] bindAddresses;
  if (binds != null) {
    bindAddresses = new String[binds.length];
    for (int i = 0; i < binds.length; i++) {
      bindAddresses[i] = binds[i].getHostAddress();
    }
  } else {
    int nHostAddrs = HostInterface.getNHostAddresses();
    bindAddresses = new String[nHostAddrs];
    for (int n = 0; n < nHostAddrs; n++) {
      bindAddresses[n] = HostInterface.getHostAddress(n);
    }
  }
  for (int j = 0; j < bindAddresses.length; j++) {
    if (bindAddresses[j] == null || bindAddresses[j].length() == 0)
      continue;
    int ssdpCount = getSSDPAnnounceCount();
    for (int i = 0; i < ssdpCount; i++)
      announce(bindAddresses[j]);
  }
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void byebye(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  
  String devNT = getNotifyServiceTypeNT();            
  String devUSN = getNotifyServiceTypeUSN();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setNTS(NTS.BYEBYE);
  ssdpReq.setNT(devNT);
  ssdpReq.setUSN(devUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void byebye(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  
  String devNT = getNotifyServiceTypeNT();            
  String devUSN = getNotifyServiceTypeUSN();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setNTS(NTS.BYEBYE);
  ssdpReq.setNT(devNT);
  ssdpReq.setUSN(devUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: cybergarage/cybergarage-upnp

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

代码示例来源:origin: geniusgithub/MediaPlayer

public void announce(String bindAddr)
{
  // uuid:device-UUID::urn:schemas-upnp-org:service:serviceType:v 
  Device rootDev = getRootDevice();
  String devLocation = rootDev.getLocationURL(bindAddr);
  String serviceNT = getNotifyServiceTypeNT();            
  String serviceUSN = getNotifyServiceTypeUSN();
  Device dev = getDevice();
  
  SSDPNotifyRequest ssdpReq = new SSDPNotifyRequest();
  ssdpReq.setServer(UPnP.getServerName());
  ssdpReq.setLeaseTime(dev.getLeaseTime());
  ssdpReq.setLocation(devLocation);
  ssdpReq.setNTS(NTS.ALIVE);
  ssdpReq.setNT(serviceNT);
  ssdpReq.setUSN(serviceUSN);
  SSDPNotifySocket ssdpSock = new SSDPNotifySocket(bindAddr);
  Device.notifyWait();
  ssdpSock.post(ssdpReq);
}

相关文章

Device类方法