blob: d9d19d4026abaf246f26987c2da4e86d86714a25 [file] [log] [blame]
package com.squareup.leakcanary;
/** A unit of work that can be retried later. */
public interface Retryable {
enum Result {
DONE, RETRY
}
Result run();
}