001    package org.shiftone.jrat.core.output;
002    
003    
004    /**
005     * @author jeff@shiftone.org (Jeff Drost)
006     */
007    public interface FileOutput {
008    
009        public void close() throws Exception;
010    
011        public void flush() throws Exception;
012    }