Basic work for proxies

This commit is contained in:
Christopher Schnick
2022-11-26 12:32:09 +01:00
parent 090b3d311c
commit cc5bee4b8b
23 changed files with 638 additions and 59 deletions
@@ -130,12 +130,12 @@ public final class XPipeConnection extends BeaconConnection {
@FunctionalInterface
public static interface Handler {
void handle(BeaconConnection con) throws ClientException, ServerException, ConnectorException;
void handle(BeaconConnection con) throws Exception;
}
@FunctionalInterface
public static interface Mapper<T> {
T handle(BeaconConnection con) throws ClientException, ServerException, ConnectorException;
T handle(BeaconConnection con) throws Exception;
}
}