package ch.qos.logback.core; import java.io.Flushable; /** * Specialization of the {@link Appender} interface that also implements {@link Flushable}, allowing for manual flushing * of the appender. * * @author brunon * @version $$Revision: #1 $$, $$DateTime: 2008/08/08 16:03:34 $$ * @since Mar 25, 2008 */ public interface FlushableAppender extends Appender, Flushable { }