@zthun/bouncer
    Preparing search index...

    Interface IZBouncerRequestHandler

    Represents an object that can handle an incoming request.

    interface IZBouncerRequestHandler {
        handle(req: IncomingMessage, res: ServerResponse): void;
    }

    Implemented by

    Index

    Methods

    Methods

    • Handles an incoming request.

      Parameters

      • req: IncomingMessage

        The incoming request message.

      • res: ServerResponse

        The server object to send back information to.

      Returns void