-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db237b5
commit ff7a914
Showing
1 changed file
with
8 additions
and
14 deletions.
There are no files selected for viewing
22 changes: 8 additions & 14 deletions
22
libraries/MTConnect.NET-MQTT/Configurations/IMTConnectMqttServerConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,18 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
// Copyright (c) 2023 TrakHound Inc., All Rights Reserved. | ||
// TrakHound Inc. licenses this file to you under the MIT license. | ||
|
||
namespace MTConnect.Configurations | ||
{ | ||
public interface IMTConnectMqttServerConfiguration | ||
{ | ||
/// <summary> | ||
/// Sets the Interval (in milliseconds) to send Current messages at | ||
/// </summary> | ||
int CurrentInterval { get; } | ||
|
||
/// <summary> | ||
/// Sets the Interval (in milliseconds) to send Sample messages at | ||
/// </summary> | ||
int SampleInterval { get; } | ||
|
||
|
||
string ProbeTopic { get; } | ||
|
||
string CurrentTopic { get; } | ||
|
||
string SampleTopic { get; } | ||
|
||
string AssetTopic { get; } | ||
} | ||
} |