普段使用しているRepositoryのテンプレート
Repositoryはデータ通信を行うもので、
主にAPIを叩いたり、ローカルのDBにアクセスするときに使用しています。
戻り値がVoidになっておりますが、
データを取得したらここに戻り値にそれをセットします。
あくまで、データをCreate(生成)、Read(読み取り)、Update(更新)、Delete(削除)のが責務にさせることがポイントです。
import UIKit
import RxCocoa
import RxSwift
protocol AuthRepositoryInjectable {
var authRepositoryImpl: AuthRepository { get }
}
extension AuthRepositoryInjectable {
var authRepositoryImpl: AuthRepository {
return AuthRepositoryImpl.shared
}
}
protocol AuthRepository {
func doSomething() -> Single<Element>
}
class AuthRepositoryImpl: AuthRepository {
let bag = DisposeBag()
static var shared = AuthRepositoryImpl()
private init() {}
func doSomething() -> Single<Void> {
return Single<Void>.just(())
}
}
Author And Source
この問題について(普段使用しているRepositoryのテンプレート), 我々は、より多くの情報をここで見つけました https://qiita.com/YOSUKE8080/items/c6548c27fa0c1230d19e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .