Uses of Class
org.epics.pvmanager.Function

Packages that use Function
org.epics.pvmanager

pvManager 

org.epics.pvmanager.expression Interfaces for the expressions PVManager can consume. 
org.epics.pvmanager.extra   
 

Uses of Function in org.epics.pvmanager
 

Subclasses of Function in org.epics.pvmanager
 class Aggregator<R,A>
          Aggregates the data out of a Collector into a new data type.
 class Collector<T>
          Collects the data at the CA rate and allows a client to get all values since last check.
 class ValueCache<T>
          Represent a building block that can store a particular value
 

Constructors in org.epics.pvmanager with parameters of type Function
Aggregator(Function<java.util.List<A>> collector)
          Creates a new aggregator.
 

Uses of Function in org.epics.pvmanager.expression
 

Methods in org.epics.pvmanager.expression that return Function
 Function<R> DesiredRateExpression.getFunction()
          The function that calculates this expression.
 Function<R> DesiredRateExpressionImpl.getFunction()
          The function that calculates new values for this expression.
 Function<R> DesiredRateReadWriteExpressionImpl.getFunction()
           
 Function<R> SourceRateExpression.getFunction()
          The function that calculates this expression.
 Function<R> SourceRateExpressionImpl.getFunction()
           
 Function<R> SourceRateReadWriteExpressionImpl.getFunction()
           
 

Methods in org.epics.pvmanager.expression that return types with arguments of type Function
static java.util.List<Function<?>> Expressions.functionsOf(DesiredRateExpressionList<?> list)
          Extract the list of functions from an expression list.
 

Constructors in org.epics.pvmanager.expression with parameters of type Function
DesiredRateExpressionImpl(DesiredRateExpressionList<?> childExpressions, Function<R> function, java.lang.String defaultName)
          Creates a new aggregated expression.
DesiredRateExpressionImpl(SourceRateExpression<?> expression, Function<R> collector, java.lang.String defaultName)
          Creates a new expression at the desired rate.
SourceRateExpressionImpl(SourceRateExpressionList<?> childExpressions, Function<R> function, java.lang.String defaultName)
          Creates a new source rate expression.
 

Uses of Function in org.epics.pvmanager.extra
 

Constructors in org.epics.pvmanager.extra with parameters of type Function
DoubleArrayTimeCacheFromVDoubleArray(Function<java.util.List<VDoubleArray>> function)
           
 

Constructor parameters in org.epics.pvmanager.extra with type arguments of type Function
DoubleArrayTimeCacheFromVDoubles(java.util.List<Function<java.util.List<VDouble>>> functions)