This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.aklein.android.ext; | |
import android.os.AsyncTask | |
import java.util.concurrent.TimeUnit; | |
/** | |
* An implementation of {@link android.os.AsyncTask} which makes it easy to deal with | |
* requests/callbacks using Groovy closures | |
*/ | |
public class Fluent<Result, Progress> extends AsyncTask<Object, Progress, Result> { |