💁🏻♂️ iOS15+ 를 지원합니다.
💁🏻♂️ Moya을 기반으로 하여 구현되었습니다.
💁🏻♂️ Moya의 다양한 옵션(requestPublisher request, Moya의 기본 매소드)을 지원합니다.
✅ AsyncMoya을 사용하면, 네트워킹 코드를 좀더 간결하게 사용 할수 있어요!
이 프로젝트는 Moya을 기반으로 구현되었습니다.
보다 자세한 내용은 해당 라이브러리의 문서를 참고해 주세요
let package = Package(
...
dependencies: [
.package(url: "https://github.com/Roy-wonji/AsyncMoya.git", from: "1.0.6")
],
...
)
import AsyncMoya
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
return try await provider.requestAsync(.getDate, decodeTo: CurrentDate.self)
}
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
return try await provider.requestAsyncAwait(.getDate, decodeTo: CurrentDate.self)
}
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
for try await result in provider.requestAsyncStream(.getDate, decodeTo: CurrentDate.self) {
if let currentDate = try? result.get() {
return currentDate
}
}
return nil
}
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
for try await currentDate in provider.requestAsyncThrowingStream(.getDate, decodeTo: CurrentDate.self) {
return currentDate
}
return nil
}
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
return try await withCheckedThrowingContinuation { continuation in
let cancellable = provider.requestRxSingle(.getDate, decodeTo: CurrentDate.self)
.asObservable()
.subscribe(onNext: { decodedObject in
continuation.resume(returning: decodedObject)
}, onError: { error in
continuation.resume(throwing: error)
})
}
}
import AsyncMoya
let provider = MoyaProvider<GitHub>(plugins: [MoyaLoggingPlugin()])
func getDate() async throws -> CurrentDate? {
return try await withCheckedThrowingContinuation { continuation in
let cancellable = provider.requestRxObservable(.getDate, decodeTo: CurrentDate.self)
.subscribe(onNext: { decodedObject in
continuation.resume(returning: decodedObject)
Log.network("Successfully retrieved CurrentDate: \(decodedObject)")
}, onError: { error in
continuation.resume(throwing: error)
Log.error("Error retrieving CurrentDate: \(error.localizedDescription)")
})
}
}
로그 관련 사용은 LogMacro 해당 라이브러리에 문서를 참고 해주세요.
서원지(Roy) [email protected]
개선의 여지가 있는 모든 것들에 대해 열려있습니다.
PullRequest를 통해 기여해주세요. 🙏
AsyncMoya 는 MIT 라이선스로 이용할 수 있습니다. 자세한 내용은 라이선스 파일을 참조해 주세요.
AsyncMoya is available under the MIT license. See the LICENSE file for more info.