mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-04-10 03:03:47 +02:00
Combine examples
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// AnySubscription.swift
|
||||
// GitHubSearchWithSwiftUI
|
||||
//
|
||||
// Created by John Holdsworth on 09/07/2019.
|
||||
// Copyright © 2019 jp.marty-suzuki. All rights reserved.
|
||||
//
|
||||
|
||||
import Combine
|
||||
|
||||
/// - seealso: https://twitter.com/peres/status/1135970931153821696
|
||||
final class AnySubscription: Subscription {
|
||||
|
||||
private let cancellable: AnyCancellable
|
||||
|
||||
init(_ cancel: @escaping () -> Void) {
|
||||
self.cancellable = AnyCancellable(cancel)
|
||||
}
|
||||
|
||||
func request(_ demand: Subscribers.Demand) {}
|
||||
|
||||
func cancel() {
|
||||
cancellable.cancel()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user