Uses of Class
org.epics.pvmanager.SourceRateExpression

Packages that use SourceRateExpression
org.epics.pvmanager This package contains all the basic compononents of the PVManager framework and the basic support for the language to define the creation. 
org.epics.pvmanager.data Support for control system types. 
org.epics.pvmanager.extra   
 

Uses of SourceRateExpression in org.epics.pvmanager
 

Methods in org.epics.pvmanager that return SourceRateExpression
static SourceRateExpression<java.lang.Object> ExpressionLanguage.channel(java.lang.String name)
          A channel with the given name of any type.
 

Methods in org.epics.pvmanager with parameters of type SourceRateExpression
static
<T> DesiredRateExpression<T>
ExpressionLanguage.latestValueOf(SourceRateExpression<T> expression)
          Expression that returns (only) at the desired rate the latest value computed from a SourceRateExpression.
static
<T> DesiredRateExpression<java.util.List<T>>
ExpressionLanguage.newValuesOf(SourceRateExpression<T> expression)
          Returns all the new values generated by the expression source rate.
static
<T> DesiredRateExpression<java.util.List<T>>
ExpressionLanguage.newValuesOf(SourceRateExpression<T> expression, int maxValues)
          Returns up to maxValues new values generated by the expression source rate.
static
<T> PVManager.PVManagerExpression<T>
PVManager.read(SourceRateExpression<T> pvExpression)
          Reads the given expression.
static
<T> DesiredRateExpression<java.util.List<T>>
ExpressionLanguage.timedCacheOf(SourceRateExpression<T> expression, TimeDuration maxIntervalBetweenSamples)
           
 

Constructors in org.epics.pvmanager with parameters of type SourceRateExpression
DesiredRateExpression(SourceRateExpression<?> expression, Function<T> collector, java.lang.String defaultName)
          Creates a new expression at the desired rate.
SourceRateExpression(SourceRateExpression<?> childExpression, Function<T> function, java.lang.String defaultName)
           
 

Constructor parameters in org.epics.pvmanager with type arguments of type SourceRateExpression
SourceRateExpression(java.util.List<SourceRateExpression<?>> childExpressions, Function<T> function, java.lang.String defaultName)
           
 

Uses of SourceRateExpression in org.epics.pvmanager.data
 

Methods in org.epics.pvmanager.data that return SourceRateExpression
static SourceRateExpression<VByteArray> ExpressionLanguage.vByteArray(java.lang.String name)
          A channel with the given name of type VByteArray.
static SourceRateExpression<VDouble> ExpressionLanguage.vDouble(java.lang.String name)
          A channel with the given name of type VDouble.
static SourceRateExpression<VDoubleArray> ExpressionLanguage.vDoubleArray(java.lang.String name)
          A channel with the given name of type VDoubleArray.
static SourceRateExpression<VEnum> ExpressionLanguage.vEnum(java.lang.String name)
          A channel with the given name of type VEnum.
static SourceRateExpression<VFloatArray> ExpressionLanguage.vFloatArray(java.lang.String name)
          A channel with the given name of type VFloatArray.
static SourceRateExpression<VInt> ExpressionLanguage.vInt(java.lang.String name)
          A channel with the given name of type VInt.
static SourceRateExpression<VIntArray> ExpressionLanguage.vIntArray(java.lang.String name)
          A channel with the given name of type VIntArray.
static SourceRateExpression<VShortArray> ExpressionLanguage.vShortArray(java.lang.String name)
          A channel with the given name of type VShortArray.
static SourceRateExpression<VString> ExpressionLanguage.vString(java.lang.String name)
          A channel with the given name of type VString.
static SourceRateExpression<VStringArray> ExpressionLanguage.vStringArray(java.lang.String name)
          A channel with the given name of type VStringArray.
 

Methods in org.epics.pvmanager.data that return types with arguments of type SourceRateExpression
static java.util.List<SourceRateExpression<VDouble>> ExpressionLanguage.vDoubles(java.util.List<java.lang.String> names)
          A list of channels with the given names, all of type VDouble.
 

Methods in org.epics.pvmanager.data with parameters of type SourceRateExpression
static DesiredRateExpression<VDouble> ExpressionLanguage.averageOf(SourceRateExpression<VDouble> doublePv)
          Aggregates the sample at the scan rate and takes the average.
static DesiredRateExpression<VStatistics> ExpressionLanguage.statisticsOf(SourceRateExpression<VDouble> doublePv)
          Aggregates the sample at the scan rate and calculates statistical information.
 

Method parameters in org.epics.pvmanager.data with type arguments of type SourceRateExpression
static java.util.List<DesiredRateExpression<VStatistics>> ExpressionLanguage.statisticsOf(java.util.List<SourceRateExpression<VDouble>> doubleExpressions)
          Applies ExpressionLanguage.statisticsOf(org.epics.pvmanager.SourceRateExpression) to all arguments.
static DesiredRateExpression<VMultiDouble> ExpressionLanguage.synchronizedArrayOf(TimeDuration tolerance, java.util.List<SourceRateExpression<VDouble>> expressions)
          A synchronized array from the given expression.
static DesiredRateExpression<VMultiDouble> ExpressionLanguage.synchronizedArrayOf(TimeDuration tolerance, TimeDuration cacheDepth, java.util.List<SourceRateExpression<VDouble>> expressions)
          A synchronized array from the given expression.
 

Uses of SourceRateExpression in org.epics.pvmanager.extra
 

Methods in org.epics.pvmanager.extra with parameters of type SourceRateExpression
static WaterfallPlot ExpressionLanguage.waterfallPlotOf(SourceRateExpression<VDoubleArray> arrayPv)
          Aggregates the sample at the scan rate and takes the average.
 



Copyright © 2011. All Rights Reserved.