Giter Club home page Giter Club logo

chronicle-ticker's Introduction

Chronicle-Ticker

A time ticker as a light weight clock

Simple Tickers

Tickers which use System.currentTimeMillis() or nanoTime()
Ticker ticker = Ticker.millis();
// or
Ticker ticker = Ticker.nanos();

double timeInSec = ticker.count() / (double) ticker.countPerSecond();
Ticker for testing purposes
Ticker ticker = Ticker.forTesting()
                      .count(System.currentTimeMillis());
// or
Ticker ticker = Ticker.forTesting()
                      .count(System.currentTimeMillis() * 1000)
                      .countPerSecond(1_000_000)
                      .countFromEpoch(0);

double timeInSecs = ticker.count() / (double) ticker.countPerSecond();

High resolution ticker

Ticker which uses a high resolution time
Ticker ticker = Ticker.highResolution();

long start = ticker.count();
// do some work
long end = ticker.count();

double timeInSecs = (double) (end - start) / ticker.countPerSecond();
// or
long timeInMicros = (end - start) * 1_000 / ticker.countPerSecond();
// or
long timeInMillis = (end - start) * 1_000_000 / ticker.countPerSecond();

Performance

Table 1. Measured on a i7 - 7820X (3.6 GHz)

Ticker

Latency

Ticker.nanos().count()

14.8 ns

Ticker.highResolution().count()

6.8 ns

Epoch time

Example from tests

        Ticker instance = ...
        long epochOffset = instance.countFromEpoch();
        long epochTicks = instance.count() + epochOffset;
        long epochMillis = epochTicks / (instance.countPerSecond() / 1000);
        long diffMillis = epochMillis - System.currentTimeMillis();
        Assert.assertTrue(Math.abs(diffMillis) < 1000);

chronicle-ticker's People

Contributors

dpisklov avatar jerryshea avatar minborg avatar peter-lawrey avatar robaustin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.