![JAR search and dependency download from the Maven repository](/logo.png)
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