org.apache.wicket.util.time.Time.fromNow()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(120)

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

Time.fromNow介绍

[英]Retrieves the Duration from now to this Time value. If this Time value is in the past, then the Duration returned will be negative. Otherwise, it will be the number of milliseconds from now to this Time .
[中]从现在起将Duration检索到此Time值。如果这个Time值是过去的,那么返回的Duration将是负数。否则,它将是从现在到这个Time的毫秒数。

代码示例

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

public void run()
  startTime.fromNow().sleep();
  final Logger log = getLog();
      startOfPeriod.add(frequency).fromNow().sleep();

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

public void run()
  startTime.fromNow().sleep();
  final Logger log = getLog();
      startOfPeriod.add(frequency).fromNow().sleep();

代码示例来源:origin: org.apache.wicket/wicket-util

startTime.fromNow().sleep();
final Logger log = getLog();
    startOfPeriod.add(frequency).fromNow().sleep();

相关文章