Show / Hide Table of Contents

Interface IAzureStorageCommandQueueProcessorFactory

Creates command queue processors for Azure storage that will listen on a queue and remove commands and pass them on for execution to the command framework

Namespace: AzureFromTheTrenches.Commanding.AzureStorage
Assembly: AzureFromTheTrenches.Commanding.AzureStorage.dll
Syntax
public interface IAzureStorageCommandQueueProcessorFactory

Methods

| Improve this Doc View Source

Start<TCommand, TResult>(CloudQueue, CancellationToken, Int32, Action<String>)

Declaration
Task Start<TCommand, TResult>(CloudQueue queue, CancellationToken cancellationToken, int maxDequeueCount = 10, Action<string> traceLogger = null)
    where TCommand : class, ICommand<TResult>
Parameters
Type Name Description
CloudQueue queue
CancellationToken cancellationToken
System.Int32 maxDequeueCount
Action<System.String> traceLogger
Returns
Type Description
Task
Type Parameters
Name Description
TCommand
TResult
| Improve this Doc View Source

Start<TCommand, TResult>(CloudQueue, Int32, Action<String>)

Declaration
Task Start<TCommand, TResult>(CloudQueue queue, int maxDequeueCount = 10, Action<string> traceLogger = null)
    where TCommand : class, ICommand<TResult>
Parameters
Type Name Description
CloudQueue queue
System.Int32 maxDequeueCount
Action<System.String> traceLogger
Returns
Type Description
Task
Type Parameters
Name Description
TCommand
TResult
  • Improve this Doc
  • View Source
  • 0 Comments
Back to top Copyright © 2018 James Randall