mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 23:35:49 +00:00
15 lines
325 B
Java
15 lines
325 B
Java
package com.jpexs.proxy;
|
|
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
import java.io.IOException;
|
|
|
|
public interface HttpRelay {
|
|
|
|
void sendRequest(Request request) throws IOException, RetryRequestException;
|
|
|
|
Reply recvReply(Request request) throws IOException, RetryRequestException;
|
|
|
|
void close();
|
|
}
|