ST.Client.AssetFileWatcher.AssetFileWatcher C# (CSharp) 메소드

AssetFileWatcher() 공개 메소드

public AssetFileWatcher ( IClientConnector connector ) : System
connector IClientConnector
리턴 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);
        }