Skip to content

Commit

Permalink
docs: Added some javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Fox committed Oct 29, 2019
1 parent 2090022 commit a35d739
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
import org.apache.kafka.common.metrics.stats.WindowedCount;
import org.apache.kafka.connect.data.Schema;

/**
* Utility class for loading different types of user defined funcrions
*/
public final class FunctionLoaderUtils {

private static final String UDF_METRIC_GROUP = "ksql-udf";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Loads user defined aggregate functions (UDAFs)
*/
class UdafLoader {

private static final Logger LOGGER = LoggerFactory.getLogger(UdafLoader.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Loads user defined functions (UDFs)
*/
public class UdfLoader {

private static final Logger LOGGER = LoggerFactory.getLogger(UdfLoader.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Loads user defined table functions (UDTFs)
*/
class UdtfLoader {

private static final Logger LOGGER = LoggerFactory.getLogger(UdtfLoader.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Coordinates the loading of UDFs, UDAFs and UDTFs. The actual loading of the functions is done in
* of the specific function loader classes
*/
public class UserFunctionLoader {

private static final Logger LOGGER = LoggerFactory.getLogger(UserFunctionLoader.class);
Expand Down

0 comments on commit a35d739

Please sign in to comment.