C# 클래스 AOLTypedQueries.Journal

Maintains a chronological journal of the additions/changes to the IndexEntry. Journal entries are stored as a linked list, with the oldest entry starting from OldestEntry
파일 보기 프로젝트 열기: stewhir/recent-robust-qac 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
AddEntry ( JournalEntry entry ) : void

Add an entry to the journal

GetEntriesBeforeDateAndDelete ( System.DateTime beforeDateTime ) : IEnumerable

Iterator for entries before the provided date. After the entry has been returned it will be removed from the journal. (THIS METHOD IS *NOT* THREAD-SAFE).

Journal ( ) : System

Initialise an empty journal

메소드 상세

AddEntry() 공개 메소드

Add an entry to the journal
public AddEntry ( JournalEntry entry ) : void
entry JournalEntry
리턴 void

GetEntriesBeforeDateAndDelete() 공개 메소드

Iterator for entries before the provided date. After the entry has been returned it will be removed from the journal. (THIS METHOD IS *NOT* THREAD-SAFE).
public GetEntriesBeforeDateAndDelete ( System.DateTime beforeDateTime ) : IEnumerable
beforeDateTime System.DateTime
리턴 IEnumerable

Journal() 공개 메소드

Initialise an empty journal
public Journal ( ) : System
리턴 System