-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from keesschollaart81/dev
V1.1.0
- Loading branch information
Showing
20 changed files
with
162 additions
and
123 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
src/CaseOnline.Azure.WebJobs.Extensions.Mqtt/Bindings/IMqttConfigurationParser.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using CaseOnline.Azure.WebJobs.Extensions.Mqtt.Config; | ||
|
||
namespace CaseOnline.Azure.WebJobs.Extensions.Mqtt.Bindings | ||
{ | ||
public interface IMqttConfigurationParser | ||
{ | ||
MqttConfiguration Parse(MqttBaseAttribute mqttAttribute); | ||
} | ||
} |
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
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
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
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
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
3 changes: 1 addition & 2 deletions
3
src/CaseOnline.Azure.WebJobs.Extensions.Mqtt/Config/MqttExtensionConfigProvider.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
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
11 changes: 0 additions & 11 deletions
11
src/CaseOnline.Azure.WebJobs.Extensions.Mqtt/IRquireMqttConnection.cs
This file was deleted.
Oops, something went wrong.
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
20 changes: 20 additions & 0 deletions
20
src/CaseOnline.Azure.WebJobs.Extensions.Mqtt/MqttBaseAttribute.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
|
||
namespace CaseOnline.Azure.WebJobs.Extensions.Mqtt | ||
{ | ||
public abstract class MqttBaseAttribute : Attribute | ||
{ | ||
protected MqttBaseAttribute() | ||
{ | ||
} | ||
|
||
protected MqttBaseAttribute(Type mqttConfigCreatorType) | ||
{ | ||
MqttConfigCreatorType = mqttConfigCreatorType; | ||
} | ||
|
||
public string ConnectionString { get; set; } | ||
|
||
public Type MqttConfigCreatorType { get; protected set; } | ||
} | ||
} |
Oops, something went wrong.