Fake Mirrors
    Preparing search index...

    Interface ConsumerConnector

    Defines the public contract for a consumer connector.

    The connector is responsible for establishing and managing the lifecycle of the consumer connection.

    interface ConsumerConnector {
        close(): Promise<void>;
        getConnection<T>(): T;
    }

    Implemented by

    • Gracefully closes a connection to the consumer.

      This method should be called during application shutdown to ensure all pending operations are completed and resources are released.

      Returns Promise<void>

      BootstrapError If the connection cannot be closed properly.

    • Retrieves the underlying consumer connection.

      This method uses a type assertion to return the connection as the requested type. It is the caller's responsibility to ensure the correct type is used.

      Type Parameters

      • T

        The expected type of the consumer connection.

      Returns T

      The consumer connection cast to type T.