troytang / YAsync

A android async task library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YAsync

This is a android async task library。

Usage

Gradle

Add this dependency to your build.gradle file:

dependencies {
    compile 'com.tangwy:yasync:0.2.0'
}

Basic usage

  • general:
YAsync.run(new YAsyncTask<String>().async(new AsyncAction<String>() {
    @Override
    public String doAsync() {
        try {
            Thread.sleep(10000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return "10s gone.";
    }
}).finished(new AsyncResult<String>() {
    @Override
    public void onResult(String o) {
        tv.setText(o);
    }
}).failed(new AsyncFail() {
    @Override
    public void onFailed(Exception ex) {
        Toast.makeText(TestActivity.this, ex.toString(), Toast.LENGTH_LONG).show();
    }
}));
  • If you want to add the task in the queue head:
YAsync.run(new YAsyncTask<String>().async(new AsyncAction<String>() {
    @Override
    public String doAsync() {
        try {
             Thread.sleep(10000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
            return "10s gone.";
    }
}).finished(new AsyncResult<String>() {
    @Override
    public void onResult(String o) {
        tv8.setText(o);
    }
}).now());
  • Cannel all which have not start
YAsync.cancelAll();

Advantages

  • Base on handler and thread。
  • Uses thread pool。
  • Custom tactics。

License

Copyright 2014 Troy Tang

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A android async task library

License:Apache License 2.0


Languages

Language:Java 100.0%