Uses of Class
org.hackystat.telemetry.analyzer.function.TelemetryFunction

Packages that use TelemetryFunction
org.hackystat.telemetry.analyzer.function Provides the implementation of the Telemetry Language function construct, which accepts an array of either Number, String, and/or TelemetryStreamCollection objects, and returns either a Number or TelemetryStreamCollection object. 
org.hackystat.telemetry.analyzer.function.impl Provides implementations of "stock", or built-in telemetry functions. 
 

Uses of TelemetryFunction in org.hackystat.telemetry.analyzer.function
 

Methods in org.hackystat.telemetry.analyzer.function that return TelemetryFunction
 TelemetryFunction TelemetryFunctionInfo.getFunction()
          Gets the instance of the telemetry function.
 

Constructors in org.hackystat.telemetry.analyzer.function with parameters of type TelemetryFunction
TelemetryFunctionInfo(TelemetryFunction function, FunctionDefinition definition)
          Constructs this instance.
 

Uses of TelemetryFunction in org.hackystat.telemetry.analyzer.function.impl
 

Subclasses of TelemetryFunction in org.hackystat.telemetry.analyzer.function.impl
 class AddFunction
          If passed two numbers, returns their sum, and if passed two telemetry streams, returns a new TelemetryStreamCollection containing the pairwise addition of the individual elements.
 class DivFunction
          If passed two numbers, returns their division, and if passed two telemetry streams, returns a new TelemetryStreamCollection containing the pairwise division of the individual elements.
 class FilterFunction
          Filters telemetry streams in a TelemetryStreamCollection object by applying a ranking function.
 class FilterZeroFunction
          Filters out telemetry streams with zero values or no value in a TelemetryStreamCollection object.
 class IdempotentFunction
          Accepts either a number or a telemetry stream and returns it.
 class MulFunction
          If passed two numbers, returns their product, and if passed two telemetry streams, returns a new TelemetryStreamCollection containing the pairwise multiplication of the individual elements.
 class SubFunction
          If passed two numbers, returns their difference, and if passed two telemetry streams, returns a new TelemetryStreamCollection containing the pairwise difference of the individual elements.