115-java-concurrency

Guidance for writing Java code that runs safely across multiple threads, including thread-safe data, task pools, asynchronous work, and newer Java concurrency features.

In plain words
What is it for?
Use it when designing thread-safe classes, producer-consumer flows, asynchronous operations, thread pools, stress tests, or Java applications using virtual threads.
Why use it?
Concurrent code can fail through race conditions, unsafe shared data, lock contention, or memory-visibility problems that are difficult to reproduce.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/alkoleft/platform-context-exporter/115-java-concurrency
Clone the repo
git clone --depth 1 https://github.com/alkoleft/platform-context-exporter

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 6,604 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.06604
Opus 5 $0.00000 $0.03302
Sonnet 5 $0.00000 $0.01321
Haiku 4.5 $0.00000 $0.00660

Measured yesterday against content hash 31b8a5ea390a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

115-java-concurrency scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/115-java-concurrency.mdc · 766 lines

How it starts

The opening of the file, as written. The whole thing — 766 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Java rules for Concurrency objects

Effective Java concurrency relies on understanding thread safety fundamentals, using java.util.concurrent utilities, and managing thread pools with ExecutorService. Key practices include implementing concurrent design patterns like Producer-Consumer, leveraging CompletableFuture for asynchronous tasks, and ensuring thread safety through immutability and safe publication. Performance aspects like lock contention and memory consistency must be considered. Thorough testing, including stress tests and thread dump analysis, is crucial. Modern Java offers virtual threads for enhanced scalability, structured concurrency for simplified task management, and scoped values for safer thread-shared data as alternatives to thread-locals.

Implementing These Principles

These guidelines are built upon the following core principles:

  1. Master Thread Safety Fundamentals: Understand and correctly apply core concepts such as synchronization (locks, conditions), atomic operations (java.util.concurrent.atomic), thread-safe collections (java.util.concurrent), immutability, and the Java Memory Model to ensure data integrity and prevent race conditions or deadlocks.
  2. Efficient Thread Pool Management: Utilize ExecutorService for robust thread management. Choose appropriate thread pool implementations and configure them with suitable sizing, keep-alive times, queue capacities, and rejection policies based on the application's workload. Implement graceful shutdown procedures.
  3. Leverage Concurrent Design Patterns: Implement established patterns like Producer-Consumer (using BlockingQueue) and Publish-Subscribe to structure concurrent applications effectively, promoting decoupling, scalability, and maintainability.
  4. Embrace Asynchronous Programming with CompletableFuture: Employ CompletableFuture to compose and manage asynchronous computations in a non-blocking way. Chain dependent tasks, combine results from multiple futures, and handle exceptions gracefully to build responsive and efficient applications.
  5. Prioritize Immutability and Safe Publication: Design classes to be immutable whenever feasible to inherently achieve thread safety. Ensure that shared mutable objects are safely published (e.g., via volatile, static initializers, or proper synchronization) so that their state is consistently visible to all threads.
  6. Optimize for Performance, Considering Concurrency overheads: Be mindful of performance implications such as lock contention (minimize scope, use finer-grained locks), memory consistency (understand happens-before, use volatile where appropriate), context switching overhead (size thread pools carefully), and potential issues like false sharing.
  7. Thorough Testing and Debugging: Rigorously test concurrent code. This includes unit tests for thread-safe components, integration tests for interactions, and stress tests to reveal race conditions or deadlocks. Utilize thread dump analysis, proper logging, and concurrency testing tools.
  8. Adopt Modern Java Concurrency Features for Enhanced Development:
    • Virtual Threads (Project Loom): Embrace virtual threads via Executors.newVirtualThreadPerTaskExecutor() for I/O-bound tasks to dramatically increase scalability with minimal resource overhead. Avoid pooling virtual threads.
    • Structured Concurrency: Use StructuredTaskScope to simplify the management of multiple related concurrent tasks as a single unit of work, improving error handling, cancellation, and resource management.
    • Scoped Values: Prefer ScopedValue over ThreadLocal for sharing immutable data robustly and efficiently across tasks within a dynamically bounded scope, especially when working with virtual threads.

Read the full file on GitHub · 766 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 766 lines · 6,604 tokens per session scan A 31b8a5ea390a

Subscribe to this mod's changes

115-java-concurrency is a cursor rule published in the GitHub repository alkoleft/platform-context-exporter (48 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 6,604 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.