Package javax.batch.operations

Skip navigation links

Overview
Package
Class
Use
Tree
Deprecated
Index
Help

Prev Package
Next Package

Frames
No Frames

Package javax.batch.operations
Provides APIs for starting, managing, and viewing results of Batch job executions, along with a set of exceptions.

See: Description

Interface Summary Interface 	Description
JobOperator 	
JobOperator provide the interface for operating on batch jobs.
Exception Summary Exception 	Description
BatchRuntimeException 	
This is the common base class for all of the RuntimeException(s) thrown by the JobOperator API methods to its callers.
JobExecutionAlreadyCompleteException 	
JobExecutionAlreadyCompleteException is thrown when restart is called for an already-completed job instance.
JobExecutionIsRunningException 	
JobExecutionIsRunningException is thrown when JobOperator.abandon(long) is called on a job execution which is currently running (i.e.
JobExecutionNotMostRecentException 	
JobExecutionNotMostRecentException is thrown when JobOperator.restart(long, java.util.Properties) is called on a job instance which has already completed (i.e.
JobExecutionNotRunningException 	
JobExecutionNotRunningException is thrown when JobOperator.stop(long) is called on a job instance which is not currently running.
JobRestartException 	
JobRestartException is thrown when an error occurs during the JobOperator restart operation.
JobSecurityException 	
SecurityException is thrown when an user is not authorized to run a JobOperator method, such as restart, stop, abandon, any getters, etc.
JobStartException 	
JobStartException is thrown when an error occurs during the JobOperator start operation.
NoSuchJobException 	
Used in JobOperator methods when referencing a job name value which does not correspond to a job recognized by the implementation's repository.
NoSuchJobExecutionException 	
Used in JobOperator methods when referencing a job execution value which does not correspond to a job execution recognized by the implementation's repository.
NoSuchJobInstanceException 	
Used in JobOperator methods when referencing a job instance value which does not correspond to a job instance recognized by the implementation's repository.

Package javax.batch.operations Description
Provides APIs for starting, managing, and viewing results of Batch job executions, along with a set of exceptions.

Version:
1.0

Skip navigation links

Overview
Package
Class
Use
Tree
Deprecated
Index
Help

Prev Package
Next Package

Frames
No Frames

Copyright © 1996-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.

Published 133 original articles · praised 191 · 20,000+ views

Guess you like

Origin blog.csdn.net/blog_programb/article/details/105688082