Bloom.ImageProcessing.LowResImageCache.LowResImageCache C# (CSharp) Method

LowResImageCache() public method

public LowResImageCache ( BookRenamedEvent bookRenamedEvent ) : System
bookRenamedEvent BookRenamedEvent
return System
        public LowResImageCache(BookRenamedEvent bookRenamedEvent)
        {
            _bookRenamedEvent = bookRenamedEvent;
            _paths = new Dictionary<string, string>();
            _cacheFolder = Path.Combine(Path.GetTempPath(), "Bloom");
            _bookRenamedEvent.Subscribe(OnBookRenamed);
        }