public virtual IScriptProxy CreateScriptProxy(IScriptingSession scriptingSession, bool x) { return(null); }
public SchedulerScriptProxy(ISchedulerService schedulerService, IScriptingSession scriptingSession) { _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession)); _schedulerService = schedulerService ?? throw new ArgumentNullException(nameof(schedulerService)); }
public ComponentRegistryScriptProxy(IComponentRegistryService componentRegistry, IScriptingSession scriptingSession) { _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession)); _componentRegistry = componentRegistry ?? throw new ArgumentNullException(nameof(componentRegistry)); }
public MessageBrokerScriptProxy(IMessageBrokerService messageBrokerService, IScriptingSession scriptingSession) { _messageBrokerService = messageBrokerService ?? throw new ArgumentNullException(nameof(messageBrokerService)); _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession)); }
public DeviceMessageBrokerScriptProxy(IDeviceMessageBrokerService deviceMessageBrokerService, IScriptingSession scriptingSession) { _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession)); _deviceMessageBrokerService = deviceMessageBrokerService ?? throw new ArgumentNullException(nameof(deviceMessageBrokerService)); }
public DebuggingScriptProxy(ILogger log, IScriptingSession scriptingSession) { _scriptingSession = scriptingSession ?? throw new ArgumentNullException(nameof(scriptingSession)); _log = log ?? throw new ArgumentNullException(nameof(log)); }