You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current: Scanner process works atomically. Document is scanned in full, then imported into the data store.
Problem: User must wait for the entire scanning process to complete before seeing results.
Goal: Scanner should update data store incrementally as soon as data becomes available.
Implementation: Create a builder interface for composing document. Scanners send detected data to the builder. The builder updates the data store. View controller observes the data store and updates the view when the data store changes.
The text was updated successfully, but these errors were encountered:
Current: Scanner process works atomically. Document is scanned in full, then imported into the data store.
Problem: User must wait for the entire scanning process to complete before seeing results.
Goal: Scanner should update data store incrementally as soon as data becomes available.
Implementation: Create a builder interface for composing document. Scanners send detected data to the builder. The builder updates the data store. View controller observes the data store and updates the view when the data store changes.
The text was updated successfully, but these errors were encountered: