File: RSSReaderFeed.h

package info (click to toggle)
grr.app 0.6.2.dfsg-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,024 kB
  • ctags: 55
  • sloc: objc: 3,418; makefile: 62
file content (78 lines) | stat: -rw-r--r-- 2,127 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* -*-objc-*-
   Project: Grr

   Copyright (C) 2005-2006 Free Software Foundation

   Author: Guenther Noack

   Created: 2005-05-27 20:15:06 +0000 by guenther

   This application is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public
   License version 2 as published by the Free Software Foundation;

   This application is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/

#ifndef _RSSREADERFEED_H_
#define _RSSREADERFEED_H_

#import <RSSKit/RSSFeed.h>
#import <Foundation/Foundation.h>

@interface RSSReaderFeed : RSSFeed
{
  NSTimeInterval minUpdateInterval;
}

/**
 * Sets the minimum update interval for a feed.
 * Many website administrators are concerned about
 * the load RSS Readers cause to their servers. So
 * I consider it to be good behaviour to have a
 * minimum update interval, so that it is ensured
 * feeds aren't fetched too often.
 */
-(void) setMinimumUpdateInterval: (NSTimeInterval) aTimeInterval;

/**
 * Returns the minimal update interval.
 * @return Minimal update interval as NSTimeInterval
 */
-(NSTimeInterval) minimumUpdateInterval;

/**
 * Returns YES if and only if the feed needs a refresh.
 * This is the case when the minimum feed fetching time interval
 * is smaller than the time interval since the last fetch.
 */
-(BOOL) needsRefresh;

/**
 * Sets the URL of the feed to a new value.
 * @param aUrlString a String, which represents the URL.
 * @return YES if and only if the string was a valid URL and could be used
 */
-(BOOL) setURLString: (NSString*) aUrlString;

@end


@interface RSSFeed (Subclassing)
-(BOOL) isSubclassedFeed;
@end

@interface RSSReaderFeed (Subclassing)
-(BOOL) isSubclassedFeed;
@end


#endif // _RSSREADERFEED_H_