當前位置: 首頁>>代碼示例>>Java>>正文


Java HTTPServerList.clear方法代碼示例

本文整理匯總了Java中org.cybergarage.http.HTTPServerList.clear方法的典型用法代碼示例。如果您正苦於以下問題:Java HTTPServerList.clear方法的具體用法?Java HTTPServerList.clear怎麽用?Java HTTPServerList.clear使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.cybergarage.http.HTTPServerList的用法示例。


在下文中一共展示了HTTPServerList.clear方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: stop

import org.cybergarage.http.HTTPServerList; //導入方法依賴的package包/類
public boolean stop() {
    unsubscribe();
    SSDPNotifySocketList ssdpNotifySocketList = getSSDPNotifySocketList();
    ssdpNotifySocketList.stop();
    ssdpNotifySocketList.close();
    ssdpNotifySocketList.clear();
    SSDPSearchResponseSocketList ssdpSearchResponseSocketList = getSSDPSearchResponseSocketList();
    ssdpSearchResponseSocketList.stop();
    ssdpSearchResponseSocketList.close();
    ssdpSearchResponseSocketList.clear();
    HTTPServerList httpServerList = getHTTPServerList();
    httpServerList.stop();
    httpServerList.close();
    httpServerList.clear();
    Disposer disposer = getDeviceDisposer();
    if (disposer != null) {
        disposer.stop();
        setDeviceDisposer(null);
    }
    RenewSubscriber renewSub = getRenewSubscriber();
    if (renewSub != null) {
        renewSub.stop();
        setRenewSubscriber(null);
    }
    return true;
}
 
開發者ID:JackChan1999,項目名稱:letv,代碼行數:27,代碼來源:ControlPoint.java

示例2: stop

import org.cybergarage.http.HTTPServerList; //導入方法依賴的package包/類
private boolean stop(boolean doByeBye)
{
	if (doByeBye == true)
		byebye();
	
	HTTPServerList httpServerList = getHTTPServerList();
	httpServerList.stop();
	httpServerList.close();
	httpServerList.clear();
	
	SSDPSearchSocketList ssdpSearchSockList = getSSDPSearchSocketList();
	ssdpSearchSockList.stop();
	ssdpSearchSockList.close();
	ssdpSearchSockList.clear();
	
	Advertiser adv = getAdvertiser();
	if (adv != null) {
		adv.stop();
		setAdvertiser(null);
	}

	return true;
}
 
開發者ID:NoYouShutup,項目名稱:CryptMeme,代碼行數:24,代碼來源:Device.java

示例3: stop

import org.cybergarage.http.HTTPServerList; //導入方法依賴的package包/類
private boolean stop(boolean doByeBye) {
	if (doByeBye == true)
		byebye();

	HTTPServerList httpServerList = getHTTPServerList();
	httpServerList.stop();
	httpServerList.close();
	httpServerList.clear();

	SSDPSearchSocketList ssdpSearchSockList = getSSDPSearchSocketList();
	ssdpSearchSockList.stop();
	ssdpSearchSockList.close();
	ssdpSearchSockList.clear();

	Advertiser adv = getAdvertiser();
	if (adv != null) {
		adv.stop();
		setAdvertiser(null);
	}

	return true;
}
 
開發者ID:NoYouShutup,項目名稱:CryptMeme,代碼行數:23,代碼來源:Device.java

示例4: stop

import org.cybergarage.http.HTTPServerList; //導入方法依賴的package包/類
public boolean stop()
{ 
	unsubscribe();
	
	SSDPNotifySocketList ssdpNotifySocketList = getSSDPNotifySocketList();
	ssdpNotifySocketList.stop();
	ssdpNotifySocketList.close();
	ssdpNotifySocketList.clear();
	
	SSDPSearchResponseSocketList ssdpSearchResponseSocketList = getSSDPSearchResponseSocketList();
	ssdpSearchResponseSocketList.stop();
	ssdpSearchResponseSocketList.close();
	ssdpSearchResponseSocketList.clear();

	HTTPServerList httpServerList = getHTTPServerList();
	httpServerList.stop();
	httpServerList.close();
	httpServerList.clear();
		
	////////////////////////////////////////
	// Disposer
	////////////////////////////////////////
	
	Disposer disposer = getDeviceDisposer();
	if (disposer != null) {
		disposer.stop();
		setDeviceDisposer(null);
	}
	
	////////////////////////////////////////
	// Subscriber
	////////////////////////////////////////
	
	RenewSubscriber renewSub = getRenewSubscriber();
	if (renewSub != null) {
		renewSub.stop();
		setRenewSubscriber(null);
	}
	
	// I2P so we will re-notify on restart
	DeviceList dl = getDeviceList();
	for (int i = 0; i < dl.size(); i++) {
		removeDevice(dl.getDevice(i));
	}

	return true;
}
 
開發者ID:NoYouShutup,項目名稱:CryptMeme,代碼行數:48,代碼來源:ControlPoint.java

示例5: stop

import org.cybergarage.http.HTTPServerList; //導入方法依賴的package包/類
public boolean stop()
{ 
	unsubscribe();
	
	SSDPNotifySocketList ssdpNotifySocketList = getSSDPNotifySocketList();
	ssdpNotifySocketList.stop();
	ssdpNotifySocketList.close();
	ssdpNotifySocketList.clear();
	
	SSDPSearchResponseSocketList ssdpSearchResponseSocketList = getSSDPSearchResponseSocketList();
	ssdpSearchResponseSocketList.stop();
	ssdpSearchResponseSocketList.close();
	ssdpSearchResponseSocketList.clear();

	HTTPServerList httpServerList = getHTTPServerList();
	httpServerList.stop();
	httpServerList.close();
	httpServerList.clear();
		
	////////////////////////////////////////
	// Disposer
	////////////////////////////////////////
	
	Disposer disposer = getDeviceDisposer();
	if (disposer != null) {
		disposer.stop();
		setDeviceDisposer(null);
	}
	
	////////////////////////////////////////
	// Subscriber
	////////////////////////////////////////
	
	RenewSubscriber renewSub = getRenewSubscriber();
	if (renewSub != null) {
		renewSub.stop();
		setRenewSubscriber(null);
	}
	
	return true;
}
 
開發者ID:jimdowling,項目名稱:nat-traverser,代碼行數:42,代碼來源:ControlPoint.java


注:本文中的org.cybergarage.http.HTTPServerList.clear方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。