RxSwift/Tests/Resources.swift
2020-02-08 18:33:29 +02:00

30 lines
682 B
Swift

//
// Resources.swift
// Tests
//
// Created by Krunoslav Zaher on 1/21/17.
// Copyright © 2017 Krunoslav Zaher. All rights reserved.
//
import RxSwift
#if TRACE_RESOURCES
struct Resources {
static func incrementTotal() -> Int32 {
return RxSwift.Resources.incrementTotal()
}
static func decrementTotal() -> Int32 {
return RxSwift.Resources.decrementTotal()
}
static var numberOfSerialDispatchQueueObservables: Int32 {
return RxSwift.Resources.numberOfSerialDispatchQueueObservables
}
static var total: Int32 {
return RxSwift.Resources.total
}
}
#endif