From 9b8bb4b1589a51e94eade7480cdffc4b85e399f2 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 27 Apr 2024 14:29:14 -0700 Subject: [PATCH] Delete FeedlyRequestStreamsOperation, which is unused. --- .../FeedlyRequestStreamsOperation.swift | 58 ------------------- 1 file changed, 58 deletions(-) delete mode 100644 Feedly/Sources/Feedly/Operations/FeedlyRequestStreamsOperation.swift diff --git a/Feedly/Sources/Feedly/Operations/FeedlyRequestStreamsOperation.swift b/Feedly/Sources/Feedly/Operations/FeedlyRequestStreamsOperation.swift deleted file mode 100644 index 3feda30cf..000000000 --- a/Feedly/Sources/Feedly/Operations/FeedlyRequestStreamsOperation.swift +++ /dev/null @@ -1,58 +0,0 @@ -// -// FeedlyRequestStreamsOperation.swift -// Account -// -// Created by Kiel Gillard on 20/9/19. -// Copyright © 2019 Ranchero Software, LLC. All rights reserved. -// - -import Foundation -import os.log - -protocol FeedlyRequestStreamsOperationDelegate: AnyObject { - func feedlyRequestStreamsOperation(_ operation: FeedlyRequestStreamsOperation, enqueue collectionStreamOperation: FeedlyGetStreamContentsOperation) -} - -/// Create one stream request operation for one Feedly collection. -/// This is the start of the process of refreshing the entire contents of a Folder. -public final class FeedlyRequestStreamsOperation: FeedlyOperation { - - weak var queueDelegate: FeedlyRequestStreamsOperationDelegate? - - let collectionsProvider: FeedlyCollectionProviding - let service: FeedlyGetStreamContentsService - let log: OSLog - let newerThan: Date? - let unreadOnly: Bool? - - init(collectionsProvider: FeedlyCollectionProviding, newerThan: Date?, unreadOnly: Bool?, service: FeedlyGetStreamContentsService, log: OSLog) { - - self.service = service - self.collectionsProvider = collectionsProvider - self.newerThan = newerThan - self.unreadOnly = unreadOnly - self.log = log - } - - public override func run() { - defer { - didFinish() - } - - assert(queueDelegate != nil, "This is not particularly useful unless the `queueDelegate` is non-nil.") - - // TODO: Prioritise the must read collection/category before others so the most important content for the user loads first. - - for collection in collectionsProvider.collections { - let resource = FeedlyCategoryResourceID(id: collection.id) - let operation = FeedlyGetStreamContentsOperation(resource: resource, - service: service, - newerThan: newerThan, - unreadOnly: unreadOnly, - log: log) - queueDelegate?.feedlyRequestStreamsOperation(self, enqueue: operation) - } - - os_log(.debug, log: log, "Requested %i collection streams", collectionsProvider.collections.count) - } -}