Uses of Class
cloud.opencode.base.parallel.executor.RateLimitedExecutor
Packages that use RateLimitedExecutor
Package
Description
OpenCode Parallel - Modern Parallel Computing Utilities
OpenCode 并行 - 现代化并行计算工具
Executor Package - Virtual Thread Executors
执行器包 - 虚拟线程执行器
-
Uses of RateLimitedExecutor in cloud.opencode.base.parallel
Methods in cloud.opencode.base.parallel that return RateLimitedExecutorModifier and TypeMethodDescriptionstatic RateLimitedExecutorOpenParallel.rateLimited(double permitsPerSecond) Creates a rate limited executor with specified permits per second.static RateLimitedExecutorOpenParallel.rateLimited(double permitsPerSecond, long burstCapacity) Creates a rate limited executor with specified rate and burst capacity. -
Uses of RateLimitedExecutor in cloud.opencode.base.parallel.executor
Methods in cloud.opencode.base.parallel.executor that return RateLimitedExecutorModifier and TypeMethodDescriptionRateLimitedExecutor.Builder.build()Builds the executor.static RateLimitedExecutorRateLimitedExecutor.create(double permitsPerSecond) Creates a rate limited executor with specified permits per second.static RateLimitedExecutorRateLimitedExecutor.create(double permitsPerSecond, long burstCapacity) Creates a rate limited executor with specified rate and burst capacity.static RateLimitedExecutorRateLimitedExecutor.withExecutor(ExecutorService delegate, double permitsPerSecond, long burstCapacity) Creates a rate limited executor with custom executor service.