/// <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(); } }
public void Start() { FrontendSetup.Configure(); BackendSetup.Configure(); m_runner.Start(); }
/// <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(); }