All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slack.api.bolt.middleware.Middleware Maven / Gradle / Ivy

package com.slack.api.bolt.middleware;

import com.slack.api.bolt.request.Request;
import com.slack.api.bolt.response.Response;

/**
 * Middleware that handles requests from the Slack API server.
 */
@FunctionalInterface
public interface Middleware {

    Response apply(Request req, Response resp, MiddlewareChain chain) throws Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy