Table of Contents

Interface ILoadBalancerQueue

Namespace
Microsoft.Azure.WebJobs
Assembly
Microsoft.Azure.WebJobs.Host.dll
[Obsolete("Not ready for public consumption.")]
public interface ILoadBalancerQueue

Methods

CreateQueueListenr(string, string, Func<string, CancellationToken, Task<FunctionResult>>)

IListener CreateQueueListenr(string queueName, string poisonQueueName, Func<string, CancellationToken, Task<FunctionResult>> callback)

Parameters

queueName string
poisonQueueName string
callback Func<string, CancellationToken, Task<FunctionResult>>

Returns

IListener

GetQueueWriter<T>(string)

IAsyncCollector<T> GetQueueWriter<T>(string queueName)

Parameters

queueName string

Returns

IAsyncCollector<T>

Type Parameters

T