Coder Social home page Coder Social logo

chronicle-threads's Introduction

Chronicle Threads

Maven Central

Thread pool

This library provide a high performance thread pool. This thread pool is design to share blocking, monitoring and busy waiting threads. Busy waiting tasks can be prioritised for HIGH, MEDIUM, DAEMON (low priority) as well as TIMER (fixed rate events) tasks in a single thread without creating garbage.

See net.openhft.chronicle.core.threads.EventLoop and net.openhft.chronicle.threads.EventGroup

Pauser

Chronicle Threads provides a number of implementations of the net.openhft.chronicle.threads.Pauser interface. The canonical way to make use of Pauser is below:

    while (running) {}
        // pollForWork returns true if it does something, false if it does nothing
        if (pollForWork())
            pauser.reset();
        else
            pauser.pause();
    }

The various different implementations of Pauser allow for varied pausing strategies - see javadoc

chronicle-threads's People

Contributors

peter-lawrey avatar hft-team-city avatar jerryshea avatar dpisklov avatar minborg avatar epickrram avatar lburgazzoli avatar tomshercliff avatar scottkidder avatar robaustin avatar danielshaya avatar martyix 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.