Files
ShadowsocksX-NG/Pods/RxSwift/RxSwift/Cancelable.swift
2017-03-20 21:26:25 +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 }
}