Interface JobExecutorContext
-
- All Implemented Interfaces:
public interface JobExecutorContextJob Executor Context
Context for which a new JobExecutor instance is being requested.
- Since:
1.0.0
Elizabeth Paige Harper https://github.com/foxcapades
-
-
Method Summary
Modifier and Type Method Description abstract StringgetQueue()ID/Name of the queue for which the JobExecutor has been requested. abstract HashIDgetJobID()Hash ID of the job for which the JobExecutor has been requested. abstract JsonNodegetJobConfig()Optional configuration of the job for which the JobExecutor has been requested. -
-
Method Detail
-
getQueue
abstract String getQueue()
ID/Name of the queue for which the JobExecutor has been requested.
-
getJobID
abstract HashID getJobID()
Hash ID of the job for which the JobExecutor has been requested.
-
getJobConfig
abstract JsonNode getJobConfig()
Optional configuration of the job for which the JobExecutor has been requested.
-
-
-
-