Uses of Class
com.levigo.jadice.server.Job
-
Packages that use Job Package Description com.levigo.jadice.server com.levigo.jadice.server.client com.levigo.jadice.server.core com.levigo.jadice.server.core.util com.levigo.jadice.server.jms.client com.levigo.jadice.server.jms.core com.levigo.jadice.server.nodes.worker com.levigo.jadice.server.rest.dto This package contains all model elements that are transfered as content to / from the REST service interfaces.com.levigo.jadice.server.util -
-
Uses of Job in com.levigo.jadice.server
Methods in com.levigo.jadice.server that return Job Modifier and Type Method Description Job
Node. getJob()
Get the associated job, ornull
if the node is not yet initialized.Methods in com.levigo.jadice.server with parameters of type Job Modifier and Type Method Description void
JobListener. errorOccurred(Job job, Node node, String messageId, String message, Throwable cause)
Receive notification about a non-fatal error during job execution.void
JobListenerAdapter. errorOccurred(Job job, Node node, String messageId, String message, Throwable cause)
void
JobListener. executionFailed(Job job, Node node, String messageId, String reason, Throwable cause)
Receive notification about a failed job execution.void
JobListenerAdapter. executionFailed(Job job, Node node, String messageId, String reason, Throwable cause)
void
JobListener. stateChanged(Job job, Job.State oldState, Job.State newState)
Receive notification about the job's state having changed.void
JobListenerAdapter. stateChanged(Job job, Job.State oldState, Job.State newState)
void
JobListener. subPipelineCreated(Job job, Node parent, Set<? extends Node> createdNodes)
void
JobListenerAdapter. subPipelineCreated(Job job, Node parent, Set<? extends Node> createdNodes)
void
JobListener. warningOccurred(Job job, Node node, String messageId, String message, Throwable cause)
Receive notification about a warning during job execution.void
JobListenerAdapter. warningOccurred(Job job, Node node, String messageId, String message, Throwable cause)
-
Uses of Job in com.levigo.jadice.server.client
Methods in com.levigo.jadice.server.client that return Job Modifier and Type Method Description Job
JobFactory. createJob()
Create a job with the defaults as defined by the particular JobFactory implementation. -
Uses of Job in com.levigo.jadice.server.core
Methods in com.levigo.jadice.server.core that return Job Modifier and Type Method Description Job
JobExecutionContext. getClientJob()
Job
ServerJob. getClientJob()
Job
NodeWorker. getJob()
-
Uses of Job in com.levigo.jadice.server.core.util
Constructors in com.levigo.jadice.server.core.util with parameters of type Job Constructor Description LimitSupport(ServerJob job, Job clientJob)
Create a job dependentLimitSupport
(i.e. -
Uses of Job in com.levigo.jadice.server.jms.client
Methods in com.levigo.jadice.server.jms.client that return Job Modifier and Type Method Description Job
JMSJobFactory. createJob()
Create a job for the specifiedQueueConnectionFactory
and the given default values (see the "see also" section). -
Uses of Job in com.levigo.jadice.server.jms.core
Methods in com.levigo.jadice.server.jms.core that return Job Modifier and Type Method Description Job
JMSJobExecutionContext. getClientJob()
-
Uses of Job in com.levigo.jadice.server.nodes.worker
Methods in com.levigo.jadice.server.nodes.worker that return Job Modifier and Type Method Description Job
StreamScriptContext. getClientJob()
-
Uses of Job in com.levigo.jadice.server.rest.dto
Constructors in com.levigo.jadice.server.rest.dto with parameters of type Job Constructor Description JobInformationDTO(Job job, com.levigo.jadice.server.rest.dto.AbstractJobDTO jobDefinition, List<FileDTO> resultFiles, List<LogEntryDTO> entries)
-
Uses of Job in com.levigo.jadice.server.util
Methods in com.levigo.jadice.server.util with parameters of type Job Modifier and Type Method Description void
TraceListener. errorOccurred(Job job, Node node, String messageId, String message, Throwable cause)
Causes aLogger.error(String, Throwable)
.void
TraceListener. executionFailed(Job job, Node node, String messageId, String reason, Throwable cause)
Causes aLogger.fatal(String, Throwable)
.void
TraceListener. stateChanged(Job job, Job.State oldState, Job.State newState)
Causes aLogger.info(String)
.void
TraceListener. subPipelineCreated(Job job, Node parent, Set<? extends Node> createdNodes)
Causes aLogger.info(String)
void
TraceListener. warningOccurred(Job job, Node node, String messageId, String message, Throwable cause)
Causes aLogger.warn(String, Throwable)
.
-