продолжение рефакторинга клиентских проходов.

This commit is contained in:
2025-02-04 16:06:49 +03:00
parent e15f2921ee
commit 8696c7e66f
6 changed files with 61 additions and 46 deletions

View File

@@ -43,4 +43,7 @@ public abstract class ClientPass <S extends RepositoryServer,T> extends Pass<T>
protected boolean SendRequest(ServerCode code_in,String arg_in, Serializable object_in){
return SendRequest(code_in,arg_in, object_in, Global.properties.SocketTimeout);
}
protected boolean SendRequest(ServerCode code_in){
return SendRequest(code_in, "", null);
}
}