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

Adding "priority ordering" feature to allow users specifying the order of precedence in a queue #183

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Feb 20, 2021

  1. Adding "priority ordering" feature to allow users specifying the orde…

    …r of precedence in a queue.
    
    No matter the `execution_time`, given execution_time>CURRENT_TIMESTAMP, the highest priority will always be executed first
    
    e.g.
    ```
    scheduler.schedule(onetimeTask.instanceBuilder("1").setPriority(100), Instant.now());
    scheduler.schedule(onetimeTask.instanceBuilder("2").setPriority(200), Instant.now());
    ```
    FreCap committed Feb 20, 2021
    Configuration menu
    Copy the full SHA
    f0459bf View commit details
    Browse the repository at this point in the history
  2. Adding "priority ordering" feature to allow users specifying the orde…

    …r of precedence in a queue.
    
    No matter the `execution_time`, given execution_time>CURRENT_TIMESTAMP, the highest priority will always be executed first
    
    e.g.
    ```
    scheduler.schedule(onetimeTask.instanceBuilder("1").setPriority(100), Instant.now());
    scheduler.schedule(onetimeTask.instanceBuilder("2").setPriority(200), Instant.now());
    ```
    FreCap committed Feb 20, 2021
    Configuration menu
    Copy the full SHA
    d41eb07 View commit details
    Browse the repository at this point in the history