From: Florian Forster Date: Tue, 24 Feb 2009 09:53:43 +0000 (+0100) Subject: collectd-java(5): Documented the `match' and `target' callbacks. X-Git-Tag: collectd-4.7.0~127^2~1 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=89f7c7980da8dcec4593f556e8e12af82ba08f58 collectd-java(5): Documented the `match' and `target' callbacks. --- diff --git a/src/collectd-java.pod b/src/collectd-java.pod index 773130ac..2c621353 100644 --- a/src/collectd-java.pod +++ b/src/collectd-java.pod @@ -232,6 +232,95 @@ This callback can be used to receive notifications from the daemon. To signal success, this method has to return zero. Anything else will be considered an error condition and cause an appropriate message to be logged. +=head2 match callback + +The match (and target, see L<"target callback"> below) callbacks work a bit +different from the other callbacks above: You don't register a match callback +with the daemon directly, but you register a function which, when called, +creates an appropriate object. The object creating the "match" objects is +called "match factory". + +=head3 Factory object + +Interface: B + +Signature: I B +(I ci); + +Called by the daemon to create "match" objects. + +Returns: A new object which implements the B interface. + +=head3 Match object + +Interface: B + +Signature: I B (I ds, I vl); + +Called when processing a chain to determine whether or not a I +matches. How values are matches is up to the implementing class. + +Has to return one of: + +=over 4 + +=item * + +B + +=item * + +B + +=back + +=head2 target callback + +The target (and match, see L<"match callback"> above) callbacks work a bit +different from the other callbacks above: You don't register a target callback +with the daemon directly, but you register a function which, when called, +creates an appropriate object. The object creating the "target" objects is +called "target factory". + +=head3 Factory object + +Interface: B + +Signature: I B +(I ci); + +Called by the daemon to create "target" objects. + +Returns: A new object which implements the B +interface. + +=head3 Target object + +Interface: B + +Signature: I B (I ds, I vl); + +Called when processing a chain to perform some action. The action performed is +up to the implementing class. + +Has to return one of: + +=over 4 + +=item * + +B + +=item * + +B + +=item * + +B + +=back + =head2 Example This short example demonstrates how to register a read callback with the @@ -340,6 +429,28 @@ Registers the B function of I with the daemon. Returns zero upon success and non-zero when an error occurred. +=head2 registerMatch + +Signature: I B (I name, +I object); + +Registers the B function of I with the daemon. + +Returns zero upon success and non-zero when an error occurred. + +See L<"match callback"> above. + +=head2 registerTarget + +Signature: I B (I name, +I object); + +Registers the B function of I with the daemon. + +Returns zero upon success and non-zero when an error occurred. + +See L<"target callback"> above. + =head2 dispatchValues Signature: I B (I) @@ -356,7 +467,7 @@ Returns zero upon success or non-zero upon failure. Signature: I B (I) -Returns the approrpate I or B if the type is not defined. +Returns the appropriate I or B if the type is not defined. =head2 logError