示例#1
0
            public FileBlockData(FileSystemBlockService blockService, BlockId blockId, int fileType)
                : base(blockId, fileType)
            {
                this.blockService = blockService;

                fileName = FormatFileName();
            }
示例#2
0
            public CompressionThread(FileSystemBlockService service)
            {
                this.service = service;

                thread = new Thread(Execute);
                thread.IsBackground = true;
                thread.Name         = "BlockService::Compression";
                thread.Start();
            }
            public FileBlockData(FileSystemBlockService blockService, BlockId blockId, int fileType)
                : base(blockId, fileType)
            {
                this.blockService = blockService;

                fileName = FormatFileName();
            }
            public CompressionThread(FileSystemBlockService service)
            {
                this.service = service;

                thread = new Thread(Execute);
                thread.IsBackground = true;
                thread.Name = "BlockService::Compression";
                thread.Start();
            }