Skip to content

Instantly share code, notes, and snippets.

View dsxsxsxs's full-sized avatar

dsxs dsxsxsxs

View GitHub Profile
@dsxsxsxs
dsxsxsxs / infinitePaging.swift.swift
Created March 22, 2021 06:53
infinitePaging.swift
import RxSwift
import RxRelay
protocol IssueListRepositoryProtocol {
func fetch(page: Int) -> Single<[Issue]>
}
final class IssueListUseCase {
private let fetchTrigger = PublishRelay<FetchMode>()