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


Java Duration.seconds方法代碼示例

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


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

示例1: parse

import org.apache.wicket.util.time.Duration; //導入方法依賴的package包/類
public static Duration parse(Long time, DurationUnit durationUnit){
	switch(durationUnit){
	case DAYS:
		return Duration.days(time);
	case HOURS:
		return Duration.hours(time);
	case MILLISECONDS:
		return Duration.milliseconds(time);
	case MINUTES:
		return Duration.minutes(time);
	case SECONDS:
		return Duration.seconds(time);
	}
	
	throw new WicketSpringBootException("Could not parse time with duration unit " + time + " " + durationUnit);
}
 
開發者ID:MarcGiffing,項目名稱:wicket-spring-boot,代碼行數:17,代碼來源:TypeParser.java

示例2: OnlineStatusPanel

import org.apache.wicket.util.time.Duration; //導入方法依賴的package包/類
OnlineStatusPanel(String id, RemoteRepoDescriptor remoteRepo) {
    super(id);
    setOutputMarkupId(true);
    this.remoteRepository = remoteRepo;
    isOffline = remoteRepo.isOffline() || centralConfigService.getDescriptor().isOfflineMode();
    onlineStatusLabel = new LabeledValue("status", "Online Status: ", "");
    onlineStatusLabel.setValue(getStatusText(remoteRepo, isOffline));
    behavior = new AbstractAjaxRestartableTimerBehavior(Duration.seconds(getSecondsForNextRefresh()),
            "ajaxRefresh") {

        @Override
        protected void onTimer(AjaxRequestTarget target) {
            onlineStatusLabel.setValue(getStatusText(remoteRepository, isOffline));
            this.setUpdateInterval(Duration.seconds(getSecondsForNextRefresh()));
            target.add(OnlineStatusPanel.this);
        }
    };

    // WebMarkupContainer statusLabel=new WebMarkupContainer("statusLabel");
    // add(statusLabel);
    onlineStatusLabel.setOutputMarkupId(true);

    addOnlineInfo();
}
 
開發者ID:alancnet,項目名稱:artifactory,代碼行數:25,代碼來源:OnlineStatusPanel.java

示例3: AsyncUpdatePanel

import org.apache.wicket.util.time.Duration; //導入方法依賴的package包/類
public AsyncUpdatePanel(String id, IModel<V> callableParameterModel) {
    this(id, callableParameterModel, Duration.seconds(DEFAULT_TIMER_DURATION));
}
 
開發者ID:Pardus-Engerek,項目名稱:engerek,代碼行數:4,代碼來源:AsyncUpdatePanel.java

示例4: AsyncDashboardPanel

import org.apache.wicket.util.time.Duration; //導入方法依賴的package包/類
public AsyncDashboardPanel(String id, IModel<String> title, String icon, String boxCssClasses, boolean noPadding) {
    this(id, title, icon, new Model(), Duration.seconds(DEFAULT_TIMER_DURATION),boxCssClasses, noPadding);
}
 
開發者ID:Pardus-Engerek,項目名稱:engerek,代碼行數:4,代碼來源:AsyncDashboardPanel.java

示例5: UpdateNewsFromCache

import org.apache.wicket.util.time.Duration; //導入方法依賴的package包/類
public UpdateNewsFromCache() {
    super(Duration.seconds(5));
    Injector.get().inject(this);
}
 
開發者ID:alancnet,項目名稱:artifactory,代碼行數:5,代碼來源:WicketAddonsImpl.java


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