cn.iotwasu.hutool.core.io.LineHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Wasu Iot Open API SDK for Java
package cn.iotwasu.hutool.core.io;
/**
* 行处理器
*
* @author Looly
*/
public interface LineHandler {
/**
* 处理一行数据,可以编辑后存入指定地方
*
* @param line 行
*/
void handle(String line);
}