Click or drag to resize

TimeSeriesDataQueueTPut Method (T)

Store new data element in queue. This method for static atomatic managed or single queue. Do not call it for manually managed queue or dynamic automatic queue (ManualControl, AutoDynamic types). Note: Please do not use both with and without DateTime method for one queue instance.

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis (in FinAnalysis.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public bool Put(
	T data
)

Parameters

data
Type: T
Data element to store.

Return Value

Type: Boolean
Returns true if and only if we succeed to add element.

Implements

IDataQueueTPut(T)
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown when you trying to use this method for ManualControl or AutoDynamic queue. Or try to use this method after you have already used method with DateTime.
See Also