Interface IServiceBusCommandQueueProcessorFactory
Assembly: AzureFromTheTrenches.Commanding.AzureServiceBus.dll
Syntax
public interface IServiceBusCommandQueueProcessorFactory
Methods
|
Improve this Doc
View Source
Create<TCommand>(QueueClient, Int32, Nullable<TimeSpan>)
Declaration
IServiceBusCommandQueueProcessor Create<TCommand>(QueueClient queueClient, int numberOfConcurrentListeneres = 1, TimeSpan? maxAutoRenewDuration = default(TimeSpan? ))
where TCommand : ICommand
Parameters
| Type |
Name |
Description |
| Microsoft.Azure.ServiceBus.QueueClient |
queueClient |
|
| System.Int32 |
numberOfConcurrentListeneres |
|
| System.Nullable<System.TimeSpan> |
maxAutoRenewDuration |
|
Returns
Type Parameters
| Name |
Description |
| TCommand |
|
|
Improve this Doc
View Source
Create<TCommand, TResult>(QueueClient, Int32, Nullable<TimeSpan>)
Declaration
IServiceBusCommandQueueProcessor Create<TCommand, TResult>(QueueClient queueClient, int numberOfConcurrentListeneres = 1, TimeSpan? maxAutoRenewDuration = default(TimeSpan? ))
where TCommand : ICommand<TResult>
Parameters
| Type |
Name |
Description |
| Microsoft.Azure.ServiceBus.QueueClient |
queueClient |
|
| System.Int32 |
numberOfConcurrentListeneres |
|
| System.Nullable<System.TimeSpan> |
maxAutoRenewDuration |
|
Returns
Type Parameters
| Name |
Description |
| TCommand |
|
| TResult |
|