42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package part3.Client.rpcClient.impl;
|
|
|
|
import part3.common.Message.RpcRequest;
|
|
import part3.common.Message.RpcResponse;
|
|
import part3.Client.rpcClient.RpcClient;
|
|
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
import java.io.ObjectOutputStream;
|
|
import java.net.Socket;
|
|
|
|
/**
|
|
* @author wxx
|
|
* @version 1.0
|
|
* @create 2024/5/2 18:58
|
|
*/
|
|
public class SimpleSocketRpcCilent implements RpcClient {
|
|
private String host;
|
|
private int port;
|
|
public SimpleSocketRpcCilent(String host,int port){
|
|
this.host=host;
|
|
this.port=port;
|
|
}
|
|
@Override
|
|
public RpcResponse sendRequest(RpcRequest request) {
|
|
try {
|
|
Socket socket=new Socket(host, port);
|
|
ObjectOutputStream oos=new ObjectOutputStream(socket.getOutputStream());
|
|
ObjectInputStream ois=new ObjectInputStream(socket.getInputStream());
|
|
|
|
oos.writeObject(request);
|
|
oos.flush();
|
|
|
|
RpcResponse response=(RpcResponse) ois.readObject();
|
|
return response;
|
|
} catch (IOException | ClassNotFoundException e) {
|
|
e.printStackTrace();
|
|
return null;
|
|
}
|
|
}
|
|
}
|