|
|
@@ -68,6 +68,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate |
|
|
|
{ |
|
|
|
let meetupIS = MeetupId.Service(.init()) |
|
|
|
let micS = Mic.Service(.init()) |
|
|
|
var subscriptions = [AnyCancellable]() |
|
|
|
var window: UIWindow? |
|
|
|
|
|
|
|
func application( |
|
|
@@ -83,6 +84,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate |
|
|
|
window?.makeKeyAndVisible() |
|
|
|
|
|
|
|
/**/print("ИГР App.didFLWO") |
|
|
|
printBus() |
|
|
|
//testMic1() |
|
|
|
//testMic2() |
|
|
|
//testMic2_id("1") |
|
|
@@ -94,6 +96,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate |
|
|
|
testMic4() |
|
|
|
return true |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func printBus() { |
|
|
|
Bus.events |
|
|
|
.sink { v in print("ИГР App.printB k/v: '\(v.0)'/'\(v.1)'") } |
|
|
|
.store(in: &subscriptions) |
|
|
|
} |
|
|
|
|
|
|
|
func testMic1() { |
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 1) { |
|
|
@@ -117,7 +126,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
var subscriptions = [AnyCancellable]() |
|
|
|
func testMic2_id(_ id: String) { |
|
|
|
DispatchQueue.main.asyncAfter(deadline: .now() + 2) { |
|
|
|
Bus.send(Bus.keyId(Mic.K.activityDate, id), Date() + 2) |
|
|
|