All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yixan.tools.common.sync.SyncRunner Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
package com.yixan.tools.common.sync;


/**
 * 异步执行方法
 *
 * @author zhaohuihua
 * @version V1.0 2017年5月26日
 */
public class SyncRunner extends SyncInvoker {

    public SyncRunner(T target, String method, Args args) {
        super(target, method, args, new Callback.Ignore());
    }
}