Data access interface used for tick and bar retrieval.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public interface IDataAccessor<T> : IDisposable
Visual Basic (Declaration)
Public Interface IDataAccessor(Of T) _
	Implements IDisposable
Visual C++
generic<typename T>
public interface class IDataAccessor : IDisposable

Type Parameters

T
The record type for this data accessor. Should be either BarData or TickData.

Remarks

While this is a generic interface, RightEdge currently uses this class to load tick and bar data.

See Also