com.squareup.leakcanary.Retryable Maven / Gradle / Ivy
package com.squareup.leakcanary;
/** A unit of work that can be retried later. */
public interface Retryable {
enum Result {
DONE, RETRY
}
Result run();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy