io.seata.core.rpc.ServerMessageSender Maven / Gradle / Ivy
/*
* Copyright 1999-2019 Seata.io Group.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.seata.core.rpc;
import io.netty.channel.Channel;
import io.seata.core.protocol.RpcMessage;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
/**
* The interface Server message sender.
*
* @author slievrly
*/
@Deprecated
public interface ServerMessageSender {
/**
* Send response.
*
* @param request the request
* @param channel the channel
* @param msg the msg
*/
void sendResponse(RpcMessage request, Channel channel, Object msg);
/**
* Sync call to RM with timeout.
*
* @param resourceId Resource ID
* @param clientId Client ID
* @param message Request message
* @param timeout timeout of the call
* @return Response message
* @throws IOException .
* @throws TimeoutException the timeout exception
*/
Object sendSyncRequest(String resourceId, String clientId, Object message, long timeout)
throws IOException, TimeoutException;
/**
* Sync call to RM
*
* @param resourceId Resource ID
* @param clientId Client ID
* @param message Request message
* @return Response message
* @throws IOException .
* @throws TimeoutException the timeout exception
*/
Object sendSyncRequest(String resourceId, String clientId, Object message) throws IOException, TimeoutException;
/**
* Send request with response object.
* send syn request for rm
*
* @param clientChannel the client channel
* @param message the message
* @return the object
* @throws TimeoutException the timeout exception
*/
Object sendSyncRequest(Channel clientChannel, Object message) throws TimeoutException;
/**
* Send request with response object.
* send syn request for rm
*
* @param clientChannel the client channel
* @param message the message
* @param timeout the timeout
* @return the object
* @throws TimeoutException the timeout exception
*/
Object sendSyncRequest(Channel clientChannel, Object message, long timeout) throws TimeoutException;
/**
* ASync call to RM
*
* @param channel channel
* @param message Request message
* @return Response message
* @throws IOException .
* @throws TimeoutException the timeout exception
*/
Object sendASyncRequest(Channel channel, Object message) throws IOException, TimeoutException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy