Bloom.BookThumbNailer.RebuildThumbNailAsync C# (CSharp) Method

RebuildThumbNailAsync() public method

Will call either 'callback' or 'errorCallback' UNLESS the thumbnail is readonly, in which case it will do neither.
public RebuildThumbNailAsync ( Book book, HtmlThumbNailer thumbnailOptions, Image>.Action callback, Exception>.Action errorCallback ) : void
book Bloom.Book.Book
thumbnailOptions HtmlThumbNailer
callback Image>.Action
errorCallback Exception>.Action
return void
        public void RebuildThumbNailAsync(Book.Book book, HtmlThumbNailer.ThumbnailOptions thumbnailOptions,
			Action<BookInfo, Image> callback, Action<BookInfo, Exception> errorCallback)
        {
            RebuildThumbNail(book, thumbnailOptions, callback, errorCallback, true);
        }