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 = null)
where TCommand : ICommand
Parameters
Type |
Name |
Description |
QueueClient |
queueClient |
|
System.Int32 |
numberOfConcurrentListeneres |
|
System.Nullable<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 = null)
where TCommand : ICommand<TResult>
Parameters
Type |
Name |
Description |
QueueClient |
queueClient |
|
System.Int32 |
numberOfConcurrentListeneres |
|
System.Nullable<TimeSpan> |
maxAutoRenewDuration |
|
Returns
Type Parameters
Name |
Description |
TCommand |
|
TResult |
|