Animatroller.Framework.LogicalDevice.ControlledDevice.ControlledDevice C# (CSharp) 메소드

ControlledDevice() 공개 메소드

public ControlledDevice ( string name, int priority, Action populateData, Action dispose ) : System
name string
priority int
populateData Action
dispose Action
리턴 System
        public ControlledDevice(string name, int priority, Action<IData> populateData, Action<IControlToken> dispose)
        {
            this.Name = name;
            this.Priority = priority;
            this.disposeAction = dispose;
            this.data = new Data();
            populateData(this.data);
        }