Inherits from NSObject
Declared in FDWStream.h

Overview

Represents a FeedWrangler Stream (which is analogous to a smart folder)

Tasks

Properties

Convenience Methods

Initialization

Properties

allFeeds

Whether the stream includes items from all feeds

@property (strong) NSNumber *allFeeds

Discussion

@YES or @NO

Declared In

FDWStream.h

feeds

An array of FDWFeed objects that the stream contains

@property (strong) NSArray *feeds

Discussion

Will be nil if the stream doesn’t filter based on feeds

Declared In

FDWStream.h

onlyUnread

Whether the stream filters based on read status

@property (strong) NSNumber *onlyUnread

Discussion

  • @YES if it only contains unread items
  • @NO if it doesn’t filter based on read status

Declared In

FDWStream.h

searchTerm

The search term the stream filters on

@property (strong) NSString *searchTerm

Discussion

Will be nil if the stream doesn’t filter by a search term

Declared In

FDWStream.h

streamID

The stream’s ID

@property (strong) NSString *streamID

Declared In

FDWStream.h

title

The stream’s title

@property (strong) NSString *title

Declared In

FDWStream.h

Class Methods

streamWithDictionary:

Creates an FDWStream object from the JSON representation that the API returns

+ (instancetype)streamWithDictionary:(NSDictionary *)dictionary

Parameters

dictionary

The dictionary to create the stream from

Declared In

FDWStream.h

Instance Methods

destroy

Destroys the smart stream

- (void)destroy

Discussion

Note: This method is a convenience on [FDWClient destroyStream:completionHandler:]

Declared In

FDWStream.h