コード例 #1
0
        private void InitEnvironment()
        {
            m_SettingsToStorage.readDatafromLocalStorage();

            // Callback and Eventing
            // Create a AppShell to act as the navigation context and navigate to the first page
        }
コード例 #2
0
        private async void InitEnvironment()
        {
            await m_SettingsToStorage.readDatafromLocalStorage();

            m_Environment.GPIOEnvironmentConnectors.InitializeActiveBanks();
            m_Environment.ProcessorGPIOEvents.Initialize();
            m_Environment.ProcessorGPIOEvents.InitializeProcessEvents();

            m_Environment.StartConnectors();
        }
コード例 #3
0
        private void InitEnvironment()
        {
            m_SettingsToStorage.readDatafromLocalStorage();

            // Callback and Eventing
            // Create a AppShell to act as the navigation context and navigate to the first page
            m_Environment.StationSocketListeners.Failed         += SocketListener_Failed;
            m_Environment.StationSocketListeners.startStreaming += SocketListener_startStreaming;
            m_Environment.StationSocketListeners.stopStreaming  += SocketListener_stopStreaming;

            m_Environment.StationSocketListeners.NotificationLevel += StationSocketListeners_NotificationLevel;
            m_Environment.Initialization();
        }