~ubuntu-branches/ubuntu/saucy/commons-io/saucy

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/io/input/TailerListenerAdapter.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-18 10:40:54 UTC
  • mfrom: (1.1.4) (3.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20130518104054-wqbtjam30uyseu9j
Tags: 2.4-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one or more
 
3
 * contributor license agreements.  See the NOTICE file distributed with
 
4
 * this work for additional information regarding copyright ownership.
 
5
 * The ASF licenses this file to You under the Apache License, Version 2.0
 
6
 * (the "License"); you may not use this file except in compliance with
 
7
 * the License.  You may obtain a copy of the License at
 
8
 *
 
9
 *      http://www.apache.org/licenses/LICENSE-2.0
 
10
 *
 
11
 * Unless required by applicable law or agreed to in writing, software
 
12
 * distributed under the License is distributed on an "AS IS" BASIS,
 
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
 * See the License for the specific language governing permissions and
 
15
 * limitations under the License.
 
16
 */
 
17
package org.apache.commons.io.input;
 
18
 
 
19
/**
 
20
 * {@link TailerListener} Adapter.
 
21
 *
 
22
 * @version $Id: TailerListenerAdapter.java 1304052 2012-03-22 20:55:29Z ggregory $
 
23
 * @since 2.0
 
24
 */
 
25
public class TailerListenerAdapter implements TailerListener {
 
26
 
 
27
    /**
 
28
     * The tailer will call this method during construction,
 
29
     * giving the listener a method of stopping the tailer.
 
30
     * @param tailer the tailer.
 
31
     */
 
32
    public void init(Tailer tailer) {
 
33
    }
 
34
 
 
35
    /**
 
36
     * This method is called if the tailed file is not found.
 
37
     */
 
38
    public void fileNotFound() {
 
39
    }
 
40
 
 
41
    /**
 
42
     * Called if a file rotation is detected.
 
43
     *
 
44
     * This method is called before the file is reopened, and fileNotFound may
 
45
     * be called if the new file has not yet been created.
 
46
     */
 
47
    public void fileRotated() {
 
48
    }
 
49
 
 
50
    /**
 
51
     * Handles a line from a Tailer.
 
52
     * @param line the line.
 
53
     */
 
54
    public void handle(String line) {
 
55
    }
 
56
 
 
57
    /**
 
58
     * Handles an Exception .
 
59
     * @param ex the exception.
 
60
     */
 
61
    public void handle(Exception ex) {
 
62
    }
 
63
 
 
64
}