List of usage examples for java.util.concurrent RejectedExecutionHandler interface-usage
From source file com.l2jfree.util.concurrent.L2RejectedExecutionHandler.java
/** * @author NB4L1 */ public final class L2RejectedExecutionHandler implements RejectedExecutionHandler { private static final Log _log = LogFactory.getLog(L2RejectedExecutionHandler.class);
From source file io.kahu.hawaii.util.call.dispatch.HawaiiRejectedExecutionHandler.java
@ThreadSafe public class HawaiiRejectedExecutionHandler implements RejectedExecutionHandler { private final LogManager logManager; private final RejectedExecutionHandler delegate; public HawaiiRejectedExecutionHandler(LogManager logManager, RejectedExecutionHandler delegate) {
From source file org.springframework.integration.util.CallerBlocksPolicy.java
/**
* A {@link RejectedExecutionHandler} that blocks the caller until
* the executor has room in its queue, or a timeout occurs (in which
* case a {@link RejectedExecutionException} is thrown.
*
* @author Gary Russell
From source file org.mule.service.scheduler.internal.executor.ByCallerThreadGroupPolicy.java
/**
* Dynamically determines the {@link RejectedExecutionHandler} implementation to use according to the {@link ThreadGroup} of the
* current thread. If the current thread is not a {@link SchedulerService} managed thread then
* {@link WaitPolicy} is used.
*
* @see AbortPolicy
From source file de.micromata.genome.chronos.spi.SchedulerImpl.java
/**
* Gruppiert Jobs bezglich eines technischen Sachverhalts, z.B. einem Dienst wie Mail.
* <p>
* Reprsentiert im Gegensatz zum {@link SchedulerDO} die Runtime-Sicht auf einen {@link Scheduler}.
* </p>
*