Add missing file for I2CP, bump -2

This commit is contained in:
zzz
2026-04-25 10:57:31 -04:00
parent 4c764b5165
commit b9bdce41a0
2 changed files with 30 additions and 1 deletions
@@ -0,0 +1,29 @@
package net.i2p.client.impl;
import net.i2p.client.LookupCallback;
import net.i2p.client.LookupResult;
/**
* The return value of I2PSession.lookupDest2()
*
* @since 0.9.70
*/
public class LkupCallback implements LookupCallback {
private LookupResult _result;
/**
* The callback
*/
public synchronized void complete(LookupResult result) {
_result = result;
this.notifyAll();
}
/**
* The result or null
*/
public synchronized LookupResult getResult() {
return _result;
}
}