-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAzureServiceBusRequestingFacade.cs
More file actions
39 lines (36 loc) · 1.87 KB
/
AzureServiceBusRequestingFacade.cs
File metadata and controls
39 lines (36 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using Microsoft.Azure.ServiceBus.Core;
using System;
using AzureServiceBusMessage = Microsoft.Azure.ServiceBus.Message;
namespace RapidField.SolidInstruments.Messaging.AzureServiceBus
{
/// <summary>
/// Facilitates requesting operations for Azure Service Bus.
/// </summary>
public sealed class AzureServiceBusRequestingFacade : MessageRequestingFacade<ISenderClient, IReceiverClient, AzureServiceBusMessage, AzureServiceBusTransmittingFacade, AzureServiceBusListeningFacade>
{
/// <summary>
/// Initializes a new instance of the <see cref="AzureServiceBusRequestingFacade" /> class.
/// </summary>
/// <param name="listeningFacade">
/// An implementation-specific messaging facade that listens for request messages.
/// </param>
/// <exception cref="ArgumentNullException">
/// <paramref name="listeningFacade" /> is <see langword="null" />.
/// </exception>
public AzureServiceBusRequestingFacade(AzureServiceBusListeningFacade listeningFacade)
: base(listeningFacade)
{
return;
}
/// <summary>
/// Releases all resources consumed by the current <see cref="AzureServiceBusRequestingFacade" />.
/// </summary>
/// <param name="disposing">
/// A value indicating whether or not managed resources should be released.
/// </param>
protected override void Dispose(Boolean disposing) => base.Dispose(disposing);
}
}