Esempio n. 1
0
 public Factory(IJobQueue jobQueue,
                RefreshVariableJob.Factory refreshVariableJobFactory,
                IDebugSessionContext debugSessionContext,
                VariableExpander.Factory variableExpanderFactory)
 {
     _jobQueue = jobQueue;
     _refreshVariableJobFactory = refreshVariableJobFactory;
     _debugSessionContext       = debugSessionContext;
     _variableExpanderFactory   = variableExpanderFactory;
 }
Esempio n. 2
0
 VariableEntry(IVariableDataSource dataSource, IJobQueue jobQueue,
               RefreshVariableJob.Factory refreshVariableJobFactory,
               IDebugSessionContext debugSessionContext,
               IVariableExpander variableExpander)
 {
     _dataSource = dataSource;
     _jobQueue   = jobQueue;
     _refreshVariableJobFactory = refreshVariableJobFactory;
     _debugSessionContext       = debugSessionContext;
     _variableExpander          = variableExpander;
 }