Back to project page compute-getting-started-android.
The source code is released under:
Apache License
If you think the Android project compute-getting-started-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.google.devrel.samples.compute.android.tasks; // w w w. jav a2s . co m import android.os.AsyncTask; /** * Base class for {@code AsyncTask}s that work with the Google Compute Engine API. * * @author paulrashidi@google.com (Paul Rashidi) */ public abstract class ComputeTask<Params, Progress, Result> extends AsyncTask<Params, Progress, Result> { }