All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squareup.leakcanary.WatchExecutor Maven / Gradle / Ivy

There is a newer version: 2.0-alpha-3
Show newest version
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);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy