-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// NetworkMonitor.swift | ||
// DontForget | ||
// | ||
// Created by 제나 on 3/4/24. | ||
// | ||
|
||
import Foundation | ||
import Network | ||
|
||
@Observable | ||
final class NetworkMonitor: ObservableObject { | ||
static let shared = NetworkMonitor() | ||
private let networkMonitor = NWPathMonitor() | ||
private let workerQueue = DispatchQueue(label: "Monitor") | ||
var isConnected = false | ||
|
||
init() { | ||
networkMonitor.pathUpdateHandler = { path in | ||
self.isConnected = path.status == .satisfied | ||
} | ||
networkMonitor.start(queue: workerQueue) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters