-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIMessagingFacade.cs
More file actions
51 lines (47 loc) · 1.84 KB
/
IMessagingFacade.cs
File metadata and controls
51 lines (47 loc) · 1.84 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
40
41
42
43
44
45
46
47
48
49
50
51
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core;
using System;
namespace RapidField.SolidInstruments.Messaging
{
/// <summary>
/// Facilitates implementation-specific operations for a message bus.
/// </summary>
/// <typeparam name="TSender">
/// The type of the implementation-specific send client.
/// </typeparam>
/// <typeparam name="TReceiver">
/// The type of the implementation-specific receive client.
/// </typeparam>
/// <typeparam name="TAdaptedMessage">
/// The type of implementation-specific adapted messages.
/// </typeparam>
public interface IMessagingFacade<TSender, TReceiver, TAdaptedMessage> : IMessagingFacade<TAdaptedMessage>
where TAdaptedMessage : class
{
}
/// <summary>
/// Facilitates implementation-specific operations for a message bus.
/// </summary>
/// <typeparam name="TAdaptedMessage">
/// The type of implementation-specific adapted messages.
/// </typeparam>
public interface IMessagingFacade<TAdaptedMessage> : IMessagingFacade
where TAdaptedMessage : class
{
}
/// <summary>
/// Facilitates implementation-specific operations for a message bus.
/// </summary>
public interface IMessagingFacade : IInstrument
{
/// <summary>
/// Gets the unique textual identifier for the current <see cref="IMessagingFacade" />.
/// </summary>
public String Identifier
{
get;
}
}
}