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

cn.keayuan.util.flow.INode Maven / Gradle / Ivy

The newest version!
package cn.keayuan.util.flow;

/**
 * Created by sskbskdrin on 2022/5/10.
 *
 * @author sskbskdrin
 */
public interface INode {

    P getParams();

    String getTag();

    boolean isMain();

    void next(String tag, Object t);

    void next(T t);

    void next();

    void close();

    void remove(String tag);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy