Class ExecuteResolvedRoutePostflightHTTPModule

HTTP kernel module that executes the postflight handlers for the route.

Usually, this is post middleware.

Hierarchy

Constructors

Properties

executeWithBlockingWriteback: boolean = false

By default, if a kernel module interrupts the request flow to send a response (for example, if an error occurs), subsequent modules are skipped.

However, a module can override this property to be true and its logic will still be applied, even after a module has interrupted the request flow.

Accessors

Methods

  • Get the method with the given name from this class, bound to this class.

    Returns

    function

    Parameters

    • methodName: string

    Returns ((...args: any[]) => any)

      • (...args: any[]): any
      • Get the method with the given name from this class, bound to this class.

        Returns

        function

        Parameters

        • Rest ...args: any[]

        Returns any