Interface ActionMethodInOut
- All Known Implementing Classes:
DebugInOut, StatActionInOut, ThreadMonitorInOut, TimeRangeInOut
public interface ActionMethodInOut
Interceptor interface for pre/post processing of action method invocations.
Implementations are executed in order before (
fuckIn(FlowContext)) and after (fuckOut(FlowContext)) the action method.- Author:
- 渔民小镇
- date:
- 2021-12-12
-
Method Summary
Modifier and TypeMethodDescriptionvoidfuckIn(FlowContext flowContext) Pre-processing hook invoked before the action method executes.voidfuckOut(FlowContext flowContext) Post-processing hook invoked after the action method executes.
-
Method Details
-
fuckIn
Pre-processing hook invoked before the action method executes.- Parameters:
flowContext- the current request flow context
-
fuckOut
Post-processing hook invoked after the action method executes.- Parameters:
flowContext- the current request flow context
-