Class CloudQueueExtensions
Inheritance
System.Object
CloudQueueExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AzureFromTheTrenches.Commanding.AzureStorage
Assembly: AzureFromTheTrenches.Commanding.AzureStorage.dll
Syntax
public static class CloudQueueExtensions
Methods
| Improve this Doc View SourceCreateCommandDispatcher(CloudQueue, IAzureStorageQueueSerializer)
Creates an Azure storagequeue dispatcher
Declaration
public static ICommandDispatcher CreateCommandDispatcher(this CloudQueue queue, IAzureStorageQueueSerializer serializer = null)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.WindowsAzure.Storage.Queue.CloudQueue | queue | The queue to dispatch the command to |
| IAzureStorageQueueSerializer | serializer | (Optional) Serializer to use, if not specified the default json serializer will be used |
Returns
| Type | Description |
|---|---|
| ICommandDispatcher |
CreateCommandDispatcherFactory(CloudQueue, IAzureStorageQueueSerializer)
Creates an Azure storagequeue dispatcher
Declaration
public static Func<ICommandDispatcher> CreateCommandDispatcherFactory(this CloudQueue queue, IAzureStorageQueueSerializer serializer = null)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.WindowsAzure.Storage.Queue.CloudQueue | queue | The queue to dispatch the command to |
| IAzureStorageQueueSerializer | serializer | (Optional) Serializer to use, if not specified the default json serializer will be used |
Returns
| Type | Description |
|---|---|
| System.Func<ICommandDispatcher> |