Concurrency Tools

MultiThreadManager

Take the headache out of concurrency with our safely managed thread pools and task schedulers.

groupId: xyz.cuddlecloudartifactId: multithreadmanagerversion: 1.0.0
Maven Installationpom.xml
pom.xml
<repositories>
  <repository>
    <id>cuddlecloud</id>
    <url>https://libraries.cuddlecloud.xyz/repository/cuddlecloud/</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>xyz.cuddlecloud</groupId>
    <artifactId>multithreadmanager</artifactId>
    <version>1.0.0</version>
  </dependency>
</dependencies>

Manage thread pools, executors, and asynchronous tasks safely.

</>Usage Examples

How to use MultiThreadManager

Practical code examples to help you get started quickly.

Run Async
import xyz.cuddlecloud.threads.TaskManager;

TaskManager.runAsync(() -> {
    System.out.println("Running cleanly in background!");
});
Threads

Concurrency, tamified.

Safe, pooled execution.

🛡️

Thread Safe

Thread-safe data structures included.