コード例 #1
0
ファイル: Pager.cs プロジェクト: schellack/spark
        public Bundle GetPage(string snapshotkey, int start = 0, int count = DEFAULT_PAGE_SIZE)
        {
            Snapshot snapshot = store.GetSnapshot(snapshotkey);

            return(GetPage(snapshot, start, count));
        }
コード例 #2
0
        public Bundle GetPage(string snapshotId, int start, int count)
        {
            Snapshot snapshot = _store.GetSnapshot(snapshotId);

            return(GetPage(snapshot, start, count));
        }