mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 11:44:36 +00:00
Initial version based on previous work. (Version alpha 7)
This commit is contained in:
12
trunk/libsrc/jpproxy/src/com/jpexs/proxy/HttpRelay.java
Normal file
12
trunk/libsrc/jpproxy/src/com/jpexs/proxy/HttpRelay.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package com.jpexs.proxy;
|
||||
|
||||
|
||||
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