AsyncRunner
public protocol AsyncRunner : Actor
A type that methods for running.
-
Indicates whether the receiver is running.
Declaration
Swift
var isRunning: Bool { get }
-
startRunning()
AsynchronousTells the receiver to start running.
Declaration
Swift
func startRunning() async
-
stopRunning()
AsynchronousTells the receiver to stop running.
Declaration
Swift
func stopRunning() async