| Package | Description |
|---|---|
| net.i2p.router.update | Classes to implement the router update process for checking and applying
I2P router updates from the update manager. |
| net.i2p.update | Interfaces and utilities for update process that operate without
requiring full router context. |
| org.klomp.snark | I2P version of the snark bittorrent client, imported in 2005 and heavily enhanced to add a web UI, DHT support, and other features. |
| Modifier and Type | Field and Description |
|---|---|
protected UpdateMethod | UpdateRunner._methodupdate method |
| Modifier and Type | Method and Description |
|---|---|
UpdateMethod | UpdateRunner.getMethod()Method. |
| Modifier and Type | Method and Description |
|---|---|
UpdateTask | PluginUpdateHandler.check(UpdateType type,
UpdateMethod method,
String appName,
String currentVersion,
long maxTime)check a single plugin |
UpdateTask | DummyHandler.check(UpdateType type,
UpdateMethod method,
String id,
String currentVersion,
long maxTime)Spins off an UpdateTask that sleeps |
UpdateTask | NewsHandler.check(UpdateType type,
UpdateMethod method,
String id,
String currentVersion,
long maxTime)This will check for news or router updates (it does the same thing). |
UpdateTask | DevSU3UpdateHandler.check(UpdateType type,
UpdateMethod method,
String id,
String currentVersion,
long maxTime) |
UpdateTask | UnsignedUpdateHandler.check(UpdateType type,
UpdateMethod method,
String id,
String currentVersion,
long maxTime) |
List<URI> | ConsoleUpdateManager.getUpdateURLs(UpdateType type,
String id,
UpdateMethod method)Where to find various resources |
boolean | ConsoleUpdateManager.notifyVersionAvailable(UpdateTask task,
URI newsSource,
UpdateType type,
String id,
UpdateMethod method,
List<URI> updateSources,
String newVersion,
String minVersion)Called by the Updater, either after check() was called, or it found out on its own. |
void | ConsoleUpdateManager.register(Checker updater,
UpdateType type,
UpdateMethod method,
int priority)register. |
void | ConsoleUpdateManager.register(Updater updater,
UpdateType type,
UpdateMethod method,
int priority)Call once for each type/method pair. |
void | ConsoleUpdateManager.unregister(Checker updater,
UpdateType type,
UpdateMethod method)unregister. |
void | ConsoleUpdateManager.unregister(Updater updater,
UpdateType type,
UpdateMethod method)unregister. |
UpdateTask | PluginUpdateHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String appName,
String newVersion,
long maxTime)download a single plugin |
UpdateTask | DummyHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Spins off an UpdateTask that sleeps |
UpdateTask | UpdateHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Start a download and return a handle to the download task. |
UpdateTask | DevSU3UpdateHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Start a download and return a handle to the download task. |
UpdateTask | UnsignedUpdateHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Start a download and return a handle to the download task. |
| Modifier and Type | Method and Description |
|---|---|
boolean | ConsoleUpdateManager.notifyVersionAvailable(UpdateTask task,
URI newsSource,
UpdateType type,
String id,
Map<UpdateMethod,List<URI>> sourceMap,
String newVersion,
String minVersion)Called by the Checker, either after check() was called, or it found out on its own. |
| Constructor and Description |
|---|
UpdateRunner(RouterContext ctx,
ConsoleUpdateManager mgr,
UpdateType type,
UpdateMethod method,
List<URI> uris)Uses router version for partial checks |
UpdateRunner(RouterContext ctx,
ConsoleUpdateManager mgr,
UpdateType type,
UpdateMethod method,
List<URI> uris,
String currentVersion)Full constructor. |
| Modifier and Type | Method and Description |
|---|---|
UpdateMethod | UpdateTask.getMethod()Get the update method. |
static UpdateMethod | UpdateMethod.valueOf(String name)Returns the enum constant of this type with the specified name. |
static UpdateMethod[] | UpdateMethod.values()Returns an array containing the constants of this enum type, in
the order they are declared. |
| Modifier and Type | Method and Description |
|---|---|
UpdateTask | Checker.check(UpdateType type,
UpdateMethod method,
String id,
String currentVersion,
long maxTime)Check for updates. |
boolean | UpdateManager.notifyVersionAvailable(UpdateTask task,
URI newsSource,
UpdateType type,
String id,
UpdateMethod method,
List<URI> updateSources,
String newVersion,
String minVersion)Called by the Checker, either after check() was called, or it found out on its own. |
void | UpdateManager.register(Checker checker,
UpdateType type,
UpdateMethod method,
int priority)Register a checker for updates. |
void | UpdateManager.register(Updater updater,
UpdateType type,
UpdateMethod method,
int priority)Call once for each type/method pair. |
void | UpdateManager.unregister(Checker checker,
UpdateType type,
UpdateMethod method)Unregister a checker. |
void | UpdateManager.unregister(Updater updater,
UpdateType type,
UpdateMethod method)Unregister an updater. |
UpdateTask | Updater.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Start a download and return a handle to the download task. |
| Modifier and Type | Method and Description |
|---|---|
boolean | UpdateManager.notifyVersionAvailable(UpdateTask task,
URI newsSource,
UpdateType type,
String id,
Map<UpdateMethod,List<URI>> sourceMap,
String newVersion,
String minVersion)Called by the Checker, either after check() was called, or it found out on its own. |
| Modifier and Type | Method and Description |
|---|---|
UpdateMethod | UpdateRunner.getMethod() |
| Modifier and Type | Method and Description |
|---|---|
UpdateTask | UpdateHandler.update(UpdateType type,
UpdateMethod method,
List<URI> updateSources,
String id,
String newVersion,
long maxTime)Start a download and return a handle to the download task. |