Package org.jbpm.executor
Interface RequeueAware
-
- All Known Implementing Classes:
ExecutorRequestAdminServiceImpl
,ExecutorServiceImpl
public interface RequeueAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
requeue(Long olderThan)
MovesRequestInfo
instances that are in running state longer than given amount of time (time unit depends on theorg.kie.executor.timeunit
system property)void
requeueById(Long requestId)
MovesRequestInfo
instance with given request id that are in running state
-
-
-
Method Detail
-
requeue
void requeue(Long olderThan)
MovesRequestInfo
instances that are in running state longer than given amount of time (time unit depends on theorg.kie.executor.timeunit
system property)- Parameters:
olderThan
- amount of time from current time stamp
-
requeueById
void requeueById(Long requestId)
MovesRequestInfo
instance with given request id that are in running state- Parameters:
requestId
- request unique identifier
-
-