Work on RequestManager, a new way to create and manage requests.

This commit is contained in:
Len
2022-09-10 00:19:38 +02:00
parent 8d883b1e88
commit 9ab689c0b8
6 changed files with 307 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
package com.alttd.util;
public class Pair<X, Y> {
private final X x;
private final Y y;
public Pair(X x, Y y) {
this.x = x;
this.y = y;
}
public X getValue0() {
return x;
}
public Y getValue1() {
return y;
}
}