mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 20:44:55 +00:00
13 lines
322 B
Java
13 lines
322 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();
|
|
}
|