Files
OrderScheduling/Pods/RxSwift/RxSwift/Cancelable.swift
DDIsFriend f0e8a1709d initial
2023-08-18 17:28:57 +08:00

14 lines
310 B
Swift

//
// Cancelable.swift
// RxSwift
//
// Created by Krunoslav Zaher on 3/12/15.
// Copyright © 2015 Krunoslav Zaher. All rights reserved.
//
/// Represents disposable resource with state tracking.
public protocol Cancelable : Disposable {
/// Was resource disposed.
var isDisposed: Bool { get }
}