public interface ProcessorSlot<T>
| Modifier and Type | Method and Description |
|---|---|
void |
entry(Context context,
ResourceWrapper resourceWrapper,
T param,
int count,
Object... args)
Entrance of this slot.
|
void |
exit(Context context,
ResourceWrapper resourceWrapper,
int count,
Object... args)
Exit of this slot.
|
void |
fireEntry(Context context,
ResourceWrapper resourceWrapper,
Object obj,
int count,
Object... args)
Means finish of
entry(Context, ResourceWrapper, Object, int, Object...). |
void |
fireExit(Context context,
ResourceWrapper resourceWrapper,
int count,
Object... args)
Means finish of
exit(Context, ResourceWrapper, int, Object...). |
void entry(Context context, ResourceWrapper resourceWrapper, T param, int count, Object... args) throws Throwable
void fireEntry(Context context, ResourceWrapper resourceWrapper, Object obj, int count, Object... args) throws Throwable
entry(Context, ResourceWrapper, Object, int, Object...).void exit(Context context, ResourceWrapper resourceWrapper, int count, Object... args)
context - current ContextresourceWrapper - current resourcecount - tokens neededargs - parameters of the original callvoid fireExit(Context context, ResourceWrapper resourceWrapper, int count, Object... args)
exit(Context, ResourceWrapper, int, Object...).context - current ContextresourceWrapper - current resourcecount - tokens neededargs - parameters of the original callCopyright © 2018 Alibaba Group. All rights reserved.