-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIMessageTransmitterModule.cs
More file actions
24 lines (22 loc) · 1.03 KB
/
IMessageTransmitterModule.cs
File metadata and controls
24 lines (22 loc) · 1.03 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
namespace RapidField.SolidInstruments.Messaging
{
/// <summary>
/// Encapsulates container configuration for message transmitters.
/// </summary>
/// <typeparam name="TConfigurator">
/// The type of the object that configures containers.
/// </typeparam>
public interface IMessageTransmitterModule<TConfigurator> : IMessageTransmitterModule, IMessageHandlerModule<TConfigurator>
where TConfigurator : class, new()
{
}
/// <summary>
/// Encapsulates container configuration for message transmitters.
/// </summary>
public interface IMessageTransmitterModule : IMessageHandlerModule
{
}
}