Example #1
0
 /// <summary>
 /// Creates new instance of the server if it doesn't exist
 /// </summary>
 public static void initialize()
 {
     if (remote_control_server_instance == null)
     {
         remote_control_server_instance = new RemoteControlServer();
     }
 }
Example #2
0
        /// <summary>
        /// This method launches remote controlled session s.t. launch operations are controlled by remote program through RemoteControlInterface
        /// </summary>
        private void RemoteControlledStartProcesses()
        {
            Thread thread = startUIThread();

            RemoteControlServer.initialize();
        }
Example #3
0
 public Experiment(ProgramStartDescription program_start_description, RemoteControlServer suka_ssilka_nah)
 {
     _program_start_description = new ProgramStartDescription(program_start_description);
     _report_directory          = suka_ssilka_nah.report_directory;
     _response_queue            = suka_ssilka_nah.response_queue;
 }