| Package | Description |
|---|---|
| org.glassfish.api.invocation |
| Modifier and Type | Method and Description |
|---|---|
<T extends ComponentInvocation> |
InvocationManagerImpl.getCurrentInvocation()
return the Invocation object of the component
being called
|
<T extends ComponentInvocation> |
InvocationManager.getCurrentInvocation()
Returns the current Invocation object associated with the current thread
|
<T extends ComponentInvocation> |
InvocationManagerImpl.getPreviousInvocation()
return the Inovcation object of the caller
return null if none exist (e.g.
|
<T extends ComponentInvocation> |
InvocationManager.getPreviousInvocation()
Returns the previous Invocation object associated with the current
thread.
|
<T extends ComponentInvocation> |
InvocationManagerImpl.postInvoke(T inv) |
<T extends ComponentInvocation> |
InvocationManager.postInvoke(T inv)
To be called by a Container to indicate that the Container has
just completed the invocation of a method on a component.
|
<T extends ComponentInvocation> |
InvocationManagerImpl.preInvoke(T inv) |
<T extends ComponentInvocation> |
InvocationManager.preInvoke(T inv)
To be called by a Container to indicate that the Container is
about to invoke a method on a component.
|
| Modifier and Type | Method and Description |
|---|---|
ComponentInvocation |
ComponentInvocation.clone() |
| Modifier and Type | Method and Description |
|---|---|
List<? extends ComponentInvocation> |
InvocationManager.getAllInvocations() |
| Modifier and Type | Method and Description |
|---|---|
void |
ComponentInvocationHandler.afterPostInvoke(ComponentInvocation.ComponentInvocationType invType,
ComponentInvocation prevInv,
ComponentInvocation curInv)
Called after the curInv has been popped from the invocation stack.
|
void |
ComponentInvocationHandler.afterPreInvoke(ComponentInvocation.ComponentInvocationType invType,
ComponentInvocation prevInv,
ComponentInvocation curInv)
Called after the curInv has been pushed into the invocation stack.
|
void |
ComponentInvocationHandler.beforePostInvoke(ComponentInvocation.ComponentInvocationType invType,
ComponentInvocation prevInv,
ComponentInvocation curInv)
Called before the curInv has been popped from the invocation stack.
|
void |
ComponentInvocationHandler.beforePreInvoke(ComponentInvocation.ComponentInvocationType invType,
ComponentInvocation prevInv,
ComponentInvocation newInv)
Called before the curInv is pushed into the invocation stack.
|
Copyright © 2017–2020 Eclipse Foundation. All rights reserved.