svn path=/trunk/boinc/; revision=22552

This commit is contained in:
David Anderson 2010-10-18 20:55:03 +00:00
parent 9f962b3311
commit 0802767209
1 changed files with 4 additions and 7 deletions

View File

@ -26,11 +26,10 @@
// Classes: // Classes:
// //
// NOTICE represents a notice of any the above types. // NOTICE represents a notice of any the above types.
// Attributes include a "private" flag, // Attributes include an "arrival time"; for RSS items, this is the time it
// and an "arrival time"; for RSS items, this is the time it
// arrived at the client, not the create time. // arrived at the client, not the create time.
// //
// NOTICES represents the set of all notices in the last 30 days. // NOTICES represents the set of all current notices.
// Each notice has a unique seqno, which is a total ordering // Each notice has a unique seqno, which is a total ordering
// compatible with increasing arrival time. // compatible with increasing arrival time.
// GUI RPC allow the enumerating of notices above a given seqno. // GUI RPC allow the enumerating of notices above a given seqno.
@ -39,7 +38,7 @@
// RSS_FEED represents an RSS feed. // RSS_FEED represents an RSS feed.
// The client polls each feed periodically. // The client polls each feed periodically.
// //
// The last 30 days of each feed is cached on disk. // The last successful reply from each feed is cached on disk.
// //
// Two projects may request the same feed. // Two projects may request the same feed.
// So each PROJECT has its own list of feeds. // So each PROJECT has its own list of feeds.
@ -48,9 +47,7 @@
// files: // files:
// notices/feeds.xml feed list // notices/feeds.xml feed list
// notices/feeds_PROJ_URL.xml list of project feeds // notices/feeds_PROJ_URL.xml list of project feeds
// notices/archive_RSS_URL.xml item archive for a feed // notices/RSS_URL.xml result of last fetch for a feed
// notices/out_RSS_URL.xml result of last fetch for a feed
// notices/archive.xml non-RSS messages
#include <deque> #include <deque>
#include <vector> #include <vector>