C# Class Microsoft.HockeyApp.Services.BaseStorageService

Mostra file Open project: bitstadium/HockeySDK-Windows

Protected Properties

Property Type Description
peekedTransmissions string>.IDictionary

Private Properties

Property Type Description
Delete void
EnqueueAsync System.Threading.Tasks.Task
Init void
Peek StorageTransmission

Protected Methods

Method Description
OnPeekedItemDisposed ( string fileName ) : void

Private Methods

Method Description
Delete ( StorageTransmission transmission ) : void
EnqueueAsync ( Transmission transmission ) : System.Threading.Tasks.Task
Init ( string uniqueFolderName ) : void

Initializes the BaseStorageService

Peek ( ) : StorageTransmission

Method Details

OnPeekedItemDisposed() protected method

protected OnPeekedItemDisposed ( string fileName ) : void
fileName string
return void

Property Details

peekedTransmissions protected_oe property

Peeked transmissions dictionary (maps file name to its full path). Holds all the transmissions that were peeked.
Note: The value (=file's full path) is not required in the Storage implementation. If there was a concurrent Abstract Data Type Set it would have been used instead. However, since there is no concurrent Set, dictionary is used and the second value is ignored.
protected IDictionary peekedTransmissions
return string>.IDictionary