func listenOnChannelOpened()

in mpush_ios_swift_demo/mpush_ios_swift_demo/AppDelegate.swift [92:98]


    func listenOnChannelOpened() {
        let notificationName = Notification.Name("CCPDidChannelConnectedSuccess")
        NotificationCenter.default.addObserver(self,
                                               selector: #selector(channelOpenedFunc(notification:)),
                                               name: notificationName,
                                               object: nil)
    }