◆ AutomaticUpdatesEnabled
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.AutomaticUpdatesEnabled |
Flag that indicates if updates to the data file will be checked for and applied to the engine automatically or not.
\r\n
Interface representing the configuration parameters controlling the automatic update checks for a specific data file.
See the Specification
string | Identifier [get, set]
The identifier of the data file that this configuration information applies to. More...
|
string | DataFilePath [get, set]
The complete file path to the location of the data file. More...
|
bool | CreateTempCopy [get, set]
Set to true if the engine should create a temporary copy of the data file rather than using the one at the location provided directly. More...
|
bool | MemoryOnly [get, set]
True if data for this file should only exist in memory. More...
|
Stream | DataStream [get, set]
The Stream containing the data. More...
|
string | DataUpdateUrl [get, set]
The URL to check when looking for updates to the data file. More...
|
bool | AutomaticUpdatesEnabled [get, set]
Flag that indicates if updates to the data file will be checked for and applied to the engine automatically or not. More...
|
IReadOnlyList< string > | DataUpdateLicenseKeys [get, set]
A list of license keys to use when checking for updates using the DataUpdateUrl. More...
|
bool | FileSystemWatcherEnabled [get, set]
If true, a FileSystemWatcher will be created to watch the file at DataFilePath. More...
|
int | PollingIntervalSeconds [get, set]
The interval between checks for updates for this data file using the specified DataUpdateUrl. More...
|
int | MaxRandomisationSeconds [get, set]
The maximum time in seconds that the polling interval may be randomized by. More...
|
IDataUpdateUrlFormatter | UrlFormatter [get, set]
The formatter to use when getting the data update URL with query string parameters set. More...
|
bool | DecompressContent [get, set]
Must return true if the data downloaded from the DataUpdateUrl is compressed and false otherwise. More...
|
bool | VerifyMd5 [get, set]
Must return true if the response from the DataUpdateUrl is expected to include a 'Content-Md5' HTTP header that contains an Md5 hash that can be used to check the integrity of the downloaded content. More...
|
bool | VerifyModifiedSince [get, set]
Must return true if the request to the DataUpdateUrl supports the 'If-Modified-Since' header and false if it does not. More...
|
bool | UpdateOnStartup [get, set]
If true then when this file is registered with the data update service, it will immediately try to download the latest copy of the file. More...
|
bool | LicenseKeyRequiredForUpdates [get]
If true then, if updates are enabled, the software will check that a license key is present when the associated engine is built. More...
|
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.AutomaticUpdatesEnabled |
Flag that indicates if updates to the data file will be checked for and applied to the engine automatically or not.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.CreateTempCopy |
Set to true if the engine should create a temporary copy of the data file rather than using the one at the location provided directly.
This setting must be set to true if automatic updates are required.
string FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.DataFilePath |
The complete file path to the location of the data file.
This value will be null if the file has been supplied from a byte[] in memory.
Stream FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.DataStream |
The Stream containing the data.
Note that this will be set to null after being read by the engine in order to reduce memory usage.
IReadOnlyList<string> FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.DataUpdateLicenseKeys |
A list of license keys to use when checking for updates using the DataUpdateUrl.
Note that the exact formatting of the query string is controlled by the configured UrlFormatter.
string FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.DataUpdateUrl |
The URL to check when looking for updates to the data file.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.DecompressContent |
Must return true if the data downloaded from the DataUpdateUrl is compressed and false otherwise.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.FileSystemWatcherEnabled |
If true, a FileSystemWatcher will be created to watch the file at DataFilePath.
If the file is modified then the engine will automatically be notified so that it can refresh it's internal data structures.
string FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.Identifier |
The identifier of the data file that this configuration information applies to.
If the engine only supports a single data file then this value will be ignored.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.LicenseKeyRequiredForUpdates |
If true then, if updates are enabled, the software will check that a license key is present when the associated engine is built.
If a license key has not been supplied, an exception will be thrown.
int FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.MaxRandomisationSeconds |
The maximum time in seconds that the polling interval may be randomized by.
I.e. each polling interval will be the configured interval + or - a random amount between zero and this value.
This settings is intended to be used to allow multiple instances of a system stagger their update requests to reduce chance of conflict errors or slow update downloads.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.MemoryOnly |
True if data for this file should only exist in memory.
I.e. Assume there is no file system.
int FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.PollingIntervalSeconds |
The interval between checks for updates for this data file using the specified DataUpdateUrl.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.UpdateOnStartup |
If true then when this file is registered with the data update service, it will immediately try to download the latest copy of the file.
This action will block execution until the download is complete and the engine has loaded the new file.
IDataUpdateUrlFormatter FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.UrlFormatter |
The formatter to use when getting the data update URL with query string parameters set.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.VerifyMd5 |
Must return true if the response from the DataUpdateUrl is expected to include a 'Content-Md5' HTTP header that contains an Md5 hash that can be used to check the integrity of the downloaded content.
bool FiftyOne.Pipeline.Engines.Configuration.IDataFileConfiguration.VerifyModifiedSince |
Must return true if the request to the DataUpdateUrl supports the 'If-Modified-Since' header and false if it does not.