mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
12 lines
363 B
Swift
12 lines
363 B
Swift
import Foundation
|
|
|
|
/// An enumeration that indicate the network monitor event.
|
|
public enum NetworkMonitorEvent: Sendable {
|
|
/// To update statistics.
|
|
case status(report: NetworkMonitorReport)
|
|
/// To publish sufficient bandwidth occured.
|
|
case publishInsufficientBWOccured(report: NetworkMonitorReport)
|
|
/// To reset statistics.
|
|
case reset
|
|
}
|