File: doc.go

package info (click to toggle)
golang-github-tideland-golib 4.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,144 kB
  • sloc: makefile: 4
file content (17 lines) | stat: -rw-r--r-- 747 bytes parent folder | download | duplicates (2)
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