107108109110111112113
public SyslogAuditEventStream( File file, AuditEventListener l ) throws IOException { super( new ByteArrayInputStream( new byte[0] ) ); this.listener = l; this.lineReader = new SequentialFileReader( file ); }
112113114115116117118
this.lineReader = new SequentialFileReader( file ); } public SyslogAuditEventStream( File file, AuditEventListener l, boolean autoRemove) throws IOException { this( file, l ); this.lineReader = new SequentialFileReader( file, 0L, autoRemove ); }