Running
public protocol Running : AnyObject
                A type that methods for running.
- 
                  
                  
Indicates whether the receiver is running.
Declaration
Swift
var isRunning: Atomic<Bool> { get } - 
                  
                  
Tells the receiver to start running.
Declaration
Swift
func startRunning() - 
                  
                  
Tells the receiver to stop running.
Declaration
Swift
func stopRunning()