@Contract public interface OperationManager
Modifier and Type | Method and Description |
---|---|
<T extends Annotation> |
createAndStartOperation(T scope)
Creates an OperationHandle that will be associated
with the thread calling this method.
|
<T extends Annotation> |
createOperation(T scope)
Creates an OperationHandle.
|
<T extends Annotation> |
getCurrentOperation(T scope)
Gets the current operation of scope type on the current thread.
|
<T extends Annotation> |
getCurrentOperations(T scope)
Gets a set of all Operations that are in state
OperationState.ACTIVE or OperationState.SUSPENDED . |
void |
shutdownAllOperations(Annotation scope)
This method will suspend all currently open operations on all threads and
then close them.
|
<T extends Annotation> OperationHandle<T> createOperation(T scope)
AnnotationLiteral
scope
- The scope annotation for this operation type<T extends Annotation> OperationHandle<T> createAndStartOperation(T scope)
AnnotationLiteral
scope
- The scope annotation for this operation typeIllegalStateException
- if the current thread is
associated with a different Operation of the same type<T extends Annotation> Set<OperationHandle<T>> getCurrentOperations(T scope)
OperationState.ACTIVE
or OperationState.SUSPENDED
.
Operations that are in the OperationState.CLOSED
state
are no longer tracked by the Manager.
The scope parameter is normally created with
AnnotationLiteral
scope
- The scope annotation for this operation type<T extends Annotation> OperationHandle<T> getCurrentOperation(T scope)
AnnotationLiteral
scope
- The scope annotation for this operation typevoid shutdownAllOperations(Annotation scope)
The scope parameter is normally created with
AnnotationLiteral
scope
- The scope annotation for this operation typeCopyright © 2009–2016 Oracle Corporation. All rights reserved.