1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
// Tideland Go Library - Scroller
//
// Copyright (C) 2014-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
// Package scroller of the Tideland Go Library helps analyzing a continuously
// written line by line content, e.g. at the monitoring of log files.
// Here the Scroller is working in the background and allows to read out of
// any ReadSeeker (which may be a File) from beginning, end or a given number
// of lines before the end, filter the output by a filter function and write
// it into a Writer. If a number of lines and a filter are passed the Scroller
// tries to find that number of lines matching to the filter.
package scroller
// EOF
|