/*
* Created by LuaView.
* Copyright (c) 2017, Alibaba Group. All rights reserved.
*
* This source code is licensed under the MIT.
* For the full copyright and license information,please view the LICENSE file in the root directory of this source tree.
*/
package com.taobao.luaview.scriptbundle.asynctask;
/**
* 带输入输出参数的简单任务,带输入&输出的简单封装
*
* @author song
*/
public abstract class SimpleTask2<Params extends Object, Result extends Object> extends BaseAsyncTask<Params, Integer, Result> {
}