MBrace.Core


CloudQueueClient

Namespace: MBrace.Core.Internals

Collection of client methods for CloudAtom API

Constructors

ConstructorDescription
new(provider)
Signature: provider:ICloudQueueProvider -> CloudQueueClient

CompiledName: .ctor

Instance members

Instance memberDescription
Create(queueId)
Signature: (queueId:string option) -> CloudQueue<'T>
Type parameters: 'T

Creates a new queue instance.

CreateAsync(queueId)
Signature: (queueId:string option) -> Async<CloudQueue<'T>>
Type parameters: 'T

Creates a new queue instance.

GetById(queueId)
Signature: queueId:string -> CloudQueue<'T>
Type parameters: 'T

Attempt to recover an existing queue of given type and identifier.

GetByIdAsync(queueId)
Signature: queueId:string -> Async<CloudQueue<'T>>
Type parameters: 'T

Attempt to recover an existing queue of given type and identifier.

Id
Signature: string

CompiledName: get_Id

Provider
Signature: ICloudQueueProvider

CompiledName: get_Provider

Static members

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

Creates a CloudQueue client by resolving the local execution context.

Fork me on GitHub