/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend.Core/Data/ICursorRowsIterator.cs
25 строк
688 B
Ivan Kozhin
Create Core module, move main classes there
24 авг 2023, 19:38
24 авг 2023, 19:38
4588519
Код
Авторство
О чём код?
namespace QueryCat.Backend.Core.Data; /// <summary> /// Rows iterator with cursor. It is possible to set cursor position and change /// current row. /// </summary> public interface ICursorRowsIterator : IRowsIterator { /// <summary> /// Current cursor position. /// </summary> int Position { get; } /// <summary> /// Total rows. /// </summary> int TotalRows { get; } /// <summary> /// Move cursor to the specific position. -1 is the special initial position. /// </summary> /// <param name="offset">Position to move.</param> /// <param name="origin">Specifies seek mode.</param> void Seek(int offset, CursorSeekOrigin origin); }