Exemplo n.º 1
0
 public virtual IScriptProxy CreateScriptProxy(IScriptingSession scriptingSession, bool x)
 {
     return(null);
 }
Exemplo n.º 2
0
 public SchedulerScriptProxy(ISchedulerService schedulerService, IScriptingSession scriptingSession)
 {
     _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession));
     _schedulerService = schedulerService ?? throw new ArgumentNullException(nameof(schedulerService));
 }
Exemplo n.º 3
0
 public ComponentRegistryScriptProxy(IComponentRegistryService componentRegistry, IScriptingSession scriptingSession)
 {
     _scriptingSession  = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession));
     _componentRegistry = componentRegistry ?? throw new ArgumentNullException(nameof(componentRegistry));
 }
Exemplo n.º 4
0
 public MessageBrokerScriptProxy(IMessageBrokerService messageBrokerService, IScriptingSession scriptingSession)
 {
     _messageBrokerService = messageBrokerService ?? throw new ArgumentNullException(nameof(messageBrokerService));
     _scriptingSession     = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession));
 }
Exemplo n.º 5
0
 public DeviceMessageBrokerScriptProxy(IDeviceMessageBrokerService deviceMessageBrokerService, IScriptingSession scriptingSession)
 {
     _scriptingSession           = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession));
     _deviceMessageBrokerService = deviceMessageBrokerService ?? throw new ArgumentNullException(nameof(deviceMessageBrokerService));
 }
Exemplo n.º 6
0
 public DebuggingScriptProxy(ILogger log, IScriptingSession scriptingSession)
 {
     _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession));
     _log = log ?? throw new ArgumentNullException(nameof(log));
 }