mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-04 12:01:57 +00:00
trunk contents moved to root
This commit is contained in:
12
libsrc/jpproxy/src/com/jpexs/proxy/HttpRelay.java
Normal file
12
libsrc/jpproxy/src/com/jpexs/proxy/HttpRelay.java
Normal file
@@ -0,0 +1,12 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user