-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIRequestMessage.cs
More file actions
19 lines (17 loc) · 952 Bytes
/
IRequestMessage.cs
File metadata and controls
19 lines (17 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Command;
namespace RapidField.SolidInstruments.Messaging
{
/// <summary>
/// Represents a message that requests a response of a specified type.
/// </summary>
/// <typeparam name="TResponseMessage">
/// The type of the response message that is associated with the request.
/// </typeparam>
public interface IRequestMessage<out TResponseMessage> : IMessage<TResponseMessage>, ICommand<TResponseMessage>, IRequestMessageBase
where TResponseMessage : class, IResponseMessage
{
}
}