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

org.noear.water.protocol.LogSourceFactory Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
package org.noear.water.protocol;

import org.noear.water.protocol.model.log.LoggerMeta;

import java.io.IOException;

public interface LogSourceFactory {
    /**
     * 更新日志源
     * */
    void updateSource(String logger) throws IOException;

    /**
     * 获取日志源
     * */
    LogSource getSource(String logger);

    /**
     * 获取日志器元信息
     * */
    LoggerMeta getLoggerMeta(String logger);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy