workerCount Property

Summary

Indicates the number of thumbnails workers.

Syntax
TypeScript
JavaScript
Object.defineProperty(DocumentViewerThumbnails.prototype, 'workerCount', 
	get: function(), 
	set: function(value) 
) 
workerCount: number; 

Property Value

The number of thumbnails workers, default value is 4. This value cannot be less than 1.

Remarks

WorkerCount is not used when the value of UseGrids is true.

When the value of UseGrids is false (the default), then this class loads the thumbnail of the pages one at a time (through the use of DocumentPage.GetThumbnailImage and DocumentViewerOperation.GetThumbnail operation will contain the thumbnail image data in the DocumentViewerOperationEventArgs.Data1 member.

Getting a thumbnail involves making a call to the Document service using DocumentPage.GetThumbnailImage to get the image data, loading it internally and waiting for it to be ready then rendering it on the image viewer.

During this waiting part, this class can start loading another thumbnail if needed up to WorkerCount. The maximum numbers of thumbnails being loaded that has not been processed will not exceed the value set in WorkerCount.

The higher the number, the more stress on the service (and the client machine connection) and the default value of 4 is a good compromise between speed and system load. To reduce service stress, consider LazyLoad.

Requirements

Target Platforms

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document.Viewer Assembly