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 voidrequeue(Long olderThan)MovesRequestInfoinstances that are in running state longer than given amount of time (time unit depends on theorg.kie.executor.timeunitsystem property)voidrequeueById(Long requestId)MovesRequestInfoinstance with given request id that are in running state
-
-
-
Method Detail
-
requeue
void requeue(Long olderThan)
MovesRequestInfoinstances that are in running state longer than given amount of time (time unit depends on theorg.kie.executor.timeunitsystem property)- Parameters:
olderThan- amount of time from current time stamp
-
requeueById
void requeueById(Long requestId)
MovesRequestInfoinstance with given request id that are in running state- Parameters:
requestId- request unique identifier
-
-