Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Portability to Java 6 support #74

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from

Commits on Sep 19, 2019

  1. Using isEmpty() instead of peek() to check if task queue is empty, si…

    …nce peek() implementation operates in a similar way to poll like a consumer which can lead to a multi-consumer scenario on a multi-producer-single-consumer queue, therefore getting into an infinite loop issue inside MPSC queue implementation.
    wyzhang authored and Wangyuan Zhang committed Sep 19, 2019
    Configuration menu
    Copy the full SHA
    5ef80d6 View commit details
    Browse the repository at this point in the history
  2. Create 1.3.1 version

    wyzhang committed Sep 19, 2019
    Configuration menu
    Copy the full SHA
    440c5c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2019

  1. Merge pull request cdapio#78 from cdapio/wyzhang/release_1.3.1

    Create 1.3.1 version
    wyzhang authored Sep 20, 2019
    Configuration menu
    Copy the full SHA
    e008f9a View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2019

  1. Portability to Java 6 support

    This framework should be able to be binary compatible with Java 6 as
    Netty does.
    This merge request allows minor changes to be able to be compatible.
    
    Also it upgrades dependencies and allows OPTION method (which was
    missing).
    fredericBregier committed Oct 30, 2019
    Configuration menu
    Copy the full SHA
    cecead2 View commit details
    Browse the repository at this point in the history