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

cn.joylau.commons.file.callback.ReadCallBack Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2017 by JoyLau. All rights reserved
 ******************************************************************************/

package cn.joylau.commons.file.callback;

/**
 * Created by JoyLau on 4/17/2017.
 * cn.joylau.commons.file.callback
 * [email protected]
 */
public interface ReadCallBack extends CanExitCallBack {

    void readLine(int lineNumber, String line);

    default void error(Throwable e) {
        e.printStackTrace();
    }

    default void done(int total) {
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy