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

com.aliyun.mq.http.common.comm.RequestHandler Maven / Gradle / Ivy

There is a newer version: 1.0.3.2
Show newest version
package com.aliyun.mq.http.common.comm;

import com.aliyun.mq.http.common.ClientException;
import com.aliyun.mq.http.common.ServiceException;
import com.aliyun.mq.http.common.http.ServiceClient;

public interface RequestHandler {

    /**
     * pre handle the request
     *
     * @param message request
     * @throws ServiceException Exception from server
     * @throws ClientException Exception from client
     */
    void handle(ServiceClient.Request message) throws ServiceException, ClientException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy