public TableHolder(string tablePath, Linker linker, NullOnlyCoroutineOwner coroutineOwner, IErrorReceiver errorReceiver)
 {
     this.tablePath      = tablePath;
     this.linker         = linker;
     this.coroutineOwner = coroutineOwner;
     this.errorReceiver  = errorReceiver;
 }
Beispiel #2
0
        public Linker(StorageChecker storageChecker, Decryptor decryptor, NullOnlyCoroutineOwner coroutineOwner, IErrorReceiver errorReceiver)
        {
            this.storageChecker = storageChecker;
            this.decryptor      = decryptor;
            this.coroutineOwner = coroutineOwner;
            this.errorReceiver  = errorReceiver;

            this.onAssetBundleLoaded = OnAssetBundleLoaded;
        }
Beispiel #3
0
 public FilterConfigurationReader(IErrorReceiver errors, FileSystemCasing casing)
 {
     this.errors = errors;
     this.casing = casing;
 }
Beispiel #4
0
 public StorageChecker(DownloadQueue downloadQueue, IErrorReceiver errorReceiver)
 {
     this.downloadQueue          = downloadQueue;
     this.errorReceiver          = errorReceiver;
     this.downloadFinishedAction = OnDownloadFinished;
 }
Beispiel #5
0
 public void Inject(IErrorReceiver errorReceiver)
 {
     _errorReceiver = errorReceiver;
 }