28e0230b6856ad99af6a4e0851c382e64eb6cf3c
[collectd.git] / bindings / java / org / collectd / api / CollectdWriteInterface.java
1 /*
2  * collectd/java - org/collectd/api/CollectdWriteInterface.java
3  * Copyright (C) 2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  */
21
22 package org.collectd.api;
23
24 /**
25  * Interface for objects implementing a write method.
26  *
27  * @author Florian Forster &lt;octo at verplant.org&gt;
28  * @see Collectd#registerWrite
29  */
30 public interface CollectdWriteInterface
31 {
32         public int write (ValueList vl);
33 }