alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (Perf.java)

This example Scala source code file (Perf.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

perf, perf

The Scala Perf.java source code

package scala.actors.threadpool;

/**
 * Compilation stub for pre-1.4.2 JREs. Thanks to it, the whole backport
 * package compiles and works with 1.4.2 as well as wih earlier JREs, and takes
 * advantage of native Perf class when running on 1.4.2 while seamlessly
 * falling back to System.currentTimeMillis() on previous JREs. This class
 * should NOT be included in the binary distribution of backport.
 *
 * @author Dawid Kurzyniec
 * @version 1.0
 */
public final class Perf {

    private static final Perf perf = new Perf();

    public static Perf getPerf() { return perf; }

    private Perf() {}

    public long highResCounter() {
        return System.currentTimeMillis();
    }

    public long highResFrequency() {
        return 1000L;
    }
}

Other Scala examples (source code examples)

Here is a short list of links related to this Scala Perf.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.