ST.Client.AssetFileWatcher.AssetFileWatcher C# (CSharp) Method

AssetFileWatcher() public method

public AssetFileWatcher ( IClientConnector connector ) : System
connector IClientConnector
return System
        public AssetFileWatcher(IClientConnector connector)
        {
            _connector = connector;


            _watcher = new FileChangeWatcher(FindRootFolder(), FileSet.Shallow("bundle.js"), this);
            _watcherAssets = new FileChangeWatcher(FindClientFolder().AppendPath("public"), FileSet.Everything(), this);
        }