示例#1
0
 /// <summary>
 /// Configure the frontend and backend sockets and then Start this device.
 /// </summary>
 public void Initialize()
 {
     if (!m_isInitialized)
     {
         m_isInitialized = true;
         FrontendSetup.Configure();
         BackendSetup.Configure();
     }
 }
示例#2
0
 public void Start()
 {
     FrontendSetup.Configure();
     BackendSetup.Configure();
     m_runner.Start();
 }
示例#3
0
 /// <summary>
 /// Initializes the frontend and backend sockets. Called automatically when starting the device.
 /// If called multiple times, will only execute once.
 /// </summary>
 public void Initialize()
 {
     FrontendSetup.Configure();
     BackendSetup.Configure();
 }