Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 797 Bytes

File metadata and controls

38 lines (32 loc) · 797 Bytes

Justification for this project

NOTE: This code is not fully tested, and should be considered under development code.

A thread pool implementation done in Java. This is a personal project that I wrote a learning and fun exercise back in 1999. An equivalent threadpool implementation done in C++ can be found at:

[threadpool-cpp] (https://github.com/rubensgomes/threadpool-cpp)

Installation

  • Download and install Apache Maven from:
    https://maven.apache.org/
  • Clone the project from my GitHub:
    https://github.com/rubensgomes/threadpool.git

Build, Test and Deploy

  • To set up an eclipse project:
    mvn -U eclipse:eclipse
  • To run a java build:
    mvn -U install
  • To run tests:
    mvn test
  • To deploy build:
    mvn deploy