mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
Remove backoff code from plugins.
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
package org.briarproject.bramble.api.plugin;
|
||||
|
||||
/**
|
||||
* Calculates polling intervals for transport plugins that use backoff.
|
||||
*/
|
||||
public interface Backoff {
|
||||
|
||||
/**
|
||||
* Returns the current polling interval.
|
||||
*/
|
||||
int getPollingInterval();
|
||||
|
||||
/**
|
||||
* Increments the backoff counter.
|
||||
*/
|
||||
void increment();
|
||||
|
||||
/**
|
||||
* Resets the backoff counter.
|
||||
*/
|
||||
void reset();
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
package org.briarproject.bramble.api.plugin;
|
||||
|
||||
public interface BackoffFactory {
|
||||
|
||||
Backoff createBackoff(int minInterval, int maxInterval,
|
||||
double base);
|
||||
}
|
||||
Reference in New Issue
Block a user