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 Type
    Method
    Description
    void
    fuckIn(FlowContext flowContext)
    Pre-processing hook invoked before the action method executes.
    void
    fuckOut(FlowContext flowContext)
    Post-processing hook invoked after the action method executes.
  • Method Details

    • fuckIn

      void fuckIn(FlowContext flowContext)
      Pre-processing hook invoked before the action method executes.
      Parameters:
      flowContext - the current request flow context
    • fuckOut

      void fuckOut(FlowContext flowContext)
      Post-processing hook invoked after the action method executes.
      Parameters:
      flowContext - the current request flow context