示例#1
0
        private ThumbnailOp(ILocalCache <byte[]> cache, IAsyncFlow <byte[]> async)
        {
            var log = TopicLogger.New("thumbnail-op");

            _log     = log;
            _cache   = cache;
            _async   = async;
            _helpers = ImageUtilities.New(log);
        }
示例#2
0
 public static IThumbnailOp New(ILocalCache <byte[]> cache, IAsyncFlow <byte[]> async)
 {
     return
         (new ThumbnailOp(cache, async));
 }