-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathISignalProcessor.cs
More file actions
41 lines (39 loc) · 1.54 KB
/
ISignalProcessor.cs
File metadata and controls
41 lines (39 loc) · 1.54 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
namespace RapidField.SolidInstruments.SignalProcessing
{
/// <summary>
/// Converts one or more input signals to a single output signal.
/// </summary>
/// <typeparam name="TOutput">
/// The type of the signal processor's output value.
/// </typeparam>
/// <typeparam name="TSettings">
/// The type of the operational settings for the signal processor.
/// </typeparam>
public interface ISignalProcessor<TOutput, TSettings> : IChannel<TOutput>, ISignalProcessor
where TSettings : SignalProcessorSettings, new()
{
/// <summary>
/// Gets the operational settings for the current <see cref="ISignalProcessor{TOutput, TSettings}" />.
/// </summary>
public TSettings Settings
{
get;
}
}
/// <summary>
/// Converts one or more input signals to a single output signal.
/// </summary>
public interface ISignalProcessor : IChannel
{
/// <summary>
/// Gets the input channels for the current <see cref="ISignalProcessor" />.
/// </summary>
public IChannelCollection InputChannels
{
get;
}
}
}