DOC

com.jano7 : executor

Maven & Gradle

Sep 21, 2020
23 stars

Java Key Sequential Executor · This small library provides an optimized solution to a problem where tasks for a particular key need to be processed sequentially as they arrive. This kind of problem can be solved by a SingleThreadExecutor, however it is not efficient. The issue is that the tasks for unrelated keys are not being processed in parallel, instead they are put into a queue common to all keys and wait for the single thread to execute them. This library allows them to be executed concurrently. Moreover this library works well in a situation where all the possible keys and their number is not known upfront.

Table Of Contents

Latest Version

Download com.jano7 : executor Javadoc & API Documentation - Latest Versions:

All Versions

Download com.jano7 : executor Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
2.0.x
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file executor-2.0.2-javadoc.jar to executor-2.0.2-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder executor-2.0.2-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "executor-2.0.2-sources.jar" -d "executor-2.0.2-javadoc" -subpackages