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

com.van.logging.IFlushAndPublish Maven / Gradle / Ivy

Go to download

Core functionality to send content to various channels, used by appender-log4j2

There is a newer version: 5.3.2
Show newest version
package com.van.logging;

import java.util.concurrent.Future;

/**
 * An interface for an implementation that will flush and publish
 * cached content.
 */
public interface IFlushAndPublish {
    /**
     * Flush and publish cached content and return a Future <Boolean>
     * for the result.
     *
     * @return Future <Boolean> for the result. This CAN BE
     * null if there was nothing published.
     */
    Future flushAndPublish();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy