DataExportMode Enumeration |
Options affecting how to determine whether a Data export is executed online, or offline.
Namespace:
NetQuarry.Services
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum DataExportMode
Public Enumeration DataExportMode
Members
| Member name | Value | Description |
---|
| Legacy | 0 | Data export uses legacy code base and exports are always executed online. When the user executes an export they have to wait for the export to complete and for the excel spreadsheet to be downloaded. |
| AlwaysOnline | 1 | Data exports requested by the user are always executed online. Detailed export statistics are logged in this mode. When the user executes an export they have to wait for the export to complete and for the excel spreadsheet to be downloaded. |
| AlwaysOffline | 2 | Data exports requested by the user are always executed offline. Detailed export statistics are logged in this mode. When the export is completed, the user can download the exported file. Optionally, the exported file may be emailed to the user if the exported file is not too large. |
| Smart | 3 | A data export requested by the user may complete online, or may be queued for export offline. Detailed export statistics are logged in this mode. Whether an export is offline, or online is based on gathered statistics for previous exports. If the statistics show an export would take longer than a certain threhsold of time, the export would be automaticaly queued offline. |
See Also