当前位置: 首页>>代码示例>>Scala>>正文


Scala currentTimeMillis类代码示例

本文整理汇总了Scala中java.lang.System.currentTimeMillis的典型用法代码示例。如果您正苦于以下问题:Scala currentTimeMillis类的具体用法?Scala currentTimeMillis怎么用?Scala currentTimeMillis使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了currentTimeMillis类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Scala代码示例。

示例1: time

//设置package包名称以及导入依赖的类
package org.hammerlab.timing

import java.lang.System.currentTimeMillis

import grizzled.slf4j.Logging

trait Timer {
  self: Logging ?

  def time[T](fn: ? T): T = time("")(fn)

  def time[T](msg: ? String)(fn: ? T): T = {
    val before = currentTimeMillis
    val res = fn
    val after = currentTimeMillis
    info(s"$msg:\t${after-before}ms")
    res
  }
} 
开发者ID:hammerlab,项目名称:io-utils,代码行数:20,代码来源:Timer.scala

示例2: InMemoryIOMonitor

//设置package包名称以及导入依赖的类
package michid.script.oak.filestore

import java.io.File
import java.lang.System.currentTimeMillis
import java.util.UUID

import ammonite.ops.Path
import org.apache.jackrabbit.oak.segment.file.IOMonitorAdapter

import scala.collection.concurrent.{Map, TrieMap}
import scala.collection.mutable.ListBuffer


class InMemoryIOMonitor extends IOMonitorAdapter {
  val reads: Map[(Long, Long), SegmentAccess] = TrieMap()

  override def beforeSegmentRead(file: File, msb: Long, lsb: Long, length: Int): Unit = {
    reads.getOrElseUpdate((msb, lsb), SegmentAccess(Path(file), msb, lsb))
            .accessed(currentTimeMillis())
  }
}

case class SegmentAccess(path: Path, lsb: Long, msb: Long) {
  val timeStamps: ListBuffer[Long] = ListBuffer.empty

  def accessed(ts: Long): Unit = this.synchronized {
    timeStamps += ts
  }

  override def toString: String =
    s"${new UUID(msb, lsb)} @ ${path.name}: ${timeStamps.mkString(",")}"
}

object InMemoryIOMonitor {
  def apply() = new InMemoryIOMonitor
} 
开发者ID:mduerig,项目名称:script-oak,代码行数:37,代码来源:InMemoryIOMonitor.scala


注:本文中的java.lang.System.currentTimeMillis类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。