Uses of Interface
org.epics.pvmanager.expression.SourceRateExpressionList

Packages that use SourceRateExpressionList
org.epics.pvmanager

pvManager 

org.epics.pvmanager.data Support for control system types. 
org.epics.pvmanager.expression Interfaces for the expressions PVManager can consume. 
org.epics.pvmanager.extra   
 

Uses of SourceRateExpressionList in org.epics.pvmanager
 

Methods in org.epics.pvmanager with parameters of type SourceRateExpressionList
static
<T> DesiredRateExpressionList<T>
ExpressionLanguage.latestValueOf(SourceRateExpressionList<T> expressions)
          Expression that returns (only) the latest value computed from a SourceRateExpression.
static
<T> DesiredRateExpressionList<java.util.List<T>>
ExpressionLanguage.newValuesOf(SourceRateExpressionList<T> expressions)
          Returns all the new values generated by the expression source rate.
 

Uses of SourceRateExpressionList in org.epics.pvmanager.data
 

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

Uses of SourceRateExpressionList in org.epics.pvmanager.expression
 

Subinterfaces of SourceRateExpressionList in org.epics.pvmanager.expression
 interface SourceRateExpression<R>
          An expression to read at the rate of the source.
 interface SourceRateReadWriteExpression<R,W>
          An expression to write and to read at the rate of the source.
 interface SourceRateReadWriteExpressionList<R,W>
          A list of expressions to write and to read at the rate of the source.
 

Classes in org.epics.pvmanager.expression that implement SourceRateExpressionList
 class ChannelExpression<R,W>
          Represents a channel, which can be both read or written.
 class ChannelExpressionList<R,W>
          Represents a list of channel, which can be both read or written.
 class SourceRateExpressionImpl<R>
          Implementation class for SourceRateExpression.
 class SourceRateExpressionListImpl<R>
          Implementation class for SourceRateExpressionList.
 class SourceRateReadWriteExpressionImpl<R,W>
          Implementation class for SourceRateReadWriteExpression.
 class SourceRateReadWriteExpressionListImpl<R,W>
          Implementation class for SourceRateReadWriteExpressionList.
 

Methods in org.epics.pvmanager.expression that return SourceRateExpressionList
 SourceRateExpressionList<R> SourceRateExpressionList.and(SourceRateExpressionList<? extends R> expressions)
          Adds the given expressions to this list.
 SourceRateExpressionList<R> SourceRateReadWriteExpressionListImpl.and(SourceRateExpressionList<? extends R> expressions)
           
 

Methods in org.epics.pvmanager.expression with parameters of type SourceRateExpressionList
 SourceRateExpressionList<R> SourceRateExpressionList.and(SourceRateExpressionList<? extends R> expressions)
          Adds the given expressions to this list.
 SourceRateExpressionListImpl<R> SourceRateExpressionListImpl.and(SourceRateExpressionList<? extends R> expressions)
           
 SourceRateExpressionList<R> SourceRateReadWriteExpressionListImpl.and(SourceRateExpressionList<? extends R> expressions)
           
 

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

Uses of SourceRateExpressionList in org.epics.pvmanager.extra
 

Methods in org.epics.pvmanager.extra with parameters of type SourceRateExpressionList
static WaterfallPlot ExpressionLanguage.waterfallPlotOf(SourceRateExpressionList<VDouble> vDoubles)
          Creates a waterfall plot from a series of scalar pvs.