-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIMetadataEnrichedCommand.cs
More file actions
25 lines (22 loc) · 1.06 KB
/
IMetadataEnrichedCommand.cs
File metadata and controls
25 lines (22 loc) · 1.06 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using RapidField.SolidInstruments.Core;
namespace RapidField.SolidInstruments.Command
{
/// <summary>
/// Represents a command that is enriched with metadata information.
/// </summary>
public interface IMetadataEnrichedCommand : ICommand, IMetadataEnrichedObject
{
}
/// <summary>
/// Represents a command that emits a result when processed and that is enriched with metadata information.
/// </summary>
/// <typeparam name="TResult">
/// The type of the result that is emitted when processing the command.
/// </typeparam>
public interface IMetadataEnrichedCommand<out TResult> : ICommand<TResult>, IMetadataEnrichedObject
{
}
}