|
PrecisionInputTimerAttach Method
|
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.248-beta
Syntaxpublic static PrecisionInputTimer Attach(
int framesPerSecond,
Action<Exception> exceptionHandler = null
)
Public Shared Function Attach (
framesPerSecond As Integer,
Optional exceptionHandler As Action(Of Exception) = Nothing
) As PrecisionInputTimer
public:
static PrecisionInputTimer^ Attach(
int framesPerSecond,
Action<Exception^>^ exceptionHandler = nullptr
)
static member Attach :
framesPerSecond : int *
?exceptionHandler : Action<Exception>
(* Defaults:
let _exceptionHandler = defaultArg exceptionHandler null
*)
-> PrecisionInputTimer
GSF.TimeSeries.PrecisionInputTimer.Attach = function(framesPerSecond, exceptionHandler);
View SourceParameters
- framesPerSecond Int32
- Desired frames per second for the input timer.
- exceptionHandler ActionException (Optional)
- Optional delegate to handle exception reporting from the timer.
Return Value
PrecisionInputTimerA
PrecisionInputTimer that can be used for the specified
framesPerSecond.
See Also