コード例 #1
0
 public StitchInstanceManager(StitchesConfiguration configuration, StitchFileSystem fileSystem)
 {
     _fileSystem = fileSystem;
     // TODO: We need a way to get the unique string name of the node at this point.
     _adaptorFactory = new StitchAdaptorFactory(configuration, _fileSystem);
     _adaptors       = new StitchAdaptorCollection();
 }
コード例 #2
0
        public StitchInstanceManager(StitchFileSystem fileSystem, StitchAdaptorFactory adaptorFactory)
        {
            _fileSystem = fileSystem;

            // TODO: We need a way to get the unique string name of the node at this point.
            _adaptorFactory = adaptorFactory;
            _adaptors       = new StitchAdaptorCollection();
        }