MBrace.Core


CloudDictionaryClient

Namespace: MBrace.Core.Internals

Collection of client methods for CloudDictionary API

Constructors

ConstructorDescription
new(provider)
Signature: provider:ICloudDictionaryProvider -> CloudDictionaryClient

CompiledName: .ctor

Instance members

Instance memberDescription
GetById(dictionaryId)
Signature: dictionaryId:string -> CloudDictionary<'T>
Type parameters: 'T

Attempt to recover an already existing CloudDictionary of provided Id and type.

GetByIdAsync(dictionaryId)
Signature: dictionaryId:string -> Async<CloudDictionary<'T>>
Type parameters: 'T

Asynchronously attempt to recover an already existing CloudDictionary of provided Id and type.

Id
Signature: string

CompiledName: get_Id

New(dictionaryId)
Signature: (dictionaryId:string option) -> CloudDictionary<'T>
Type parameters: 'T

Creates a new CloudDictionary instance.

NewAsync(dictionaryId)
Signature: (dictionaryId:string option) -> Async<CloudDictionary<'T>>
Type parameters: 'T

Asynchronously creates a new CloudDictionary instance.

Provider
Signature: ICloudDictionaryProvider

CompiledName: get_Provider

Static members

Static memberDescription
Create(resources)
Signature: resources:ResourceRegistry -> CloudDictionaryClient

Creates a CloudDictionary client by resolving the local execution context.

Fork me on GitHub