blob: 9446877c44c021810910a977ac7da00ef165750c [file] [log] [blame]
package com.squareup.leakcanary;
/**
* A {@link WatchExecutor} is in charge of executing a {@link Retryable} in the future, and retry
* later if needed.
*/
public interface WatchExecutor {
WatchExecutor NONE = new WatchExecutor() {
@Override public void execute(Retryable retryable) {
}
};
void execute(Retryable retryable);
}