generated from KinsonDigital/CSharpLibTemplateRepo
-
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #54 from KinsonDigital/preview/v1.0.0-preview.10
🚀Preview Release
- Loading branch information
Showing
6 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// <copyright file="IPullReactable.cs" company="KinsonDigital"> | ||
// Copyright (c) KinsonDigital. All rights reserved. | ||
// </copyright> | ||
|
||
namespace Carbonate; | ||
|
||
using Core; | ||
|
||
/// <summary> | ||
/// Defines a provider for pull-based responses. | ||
/// </summary> | ||
public interface IPullReactable : IReactable<IRespondReactor>, IPullable | ||
{ | ||
} |
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,14 @@ | ||
// <copyright file="IPushReactable.cs" company="KinsonDigital"> | ||
// Copyright (c) KinsonDigital. All rights reserved. | ||
// </copyright> | ||
|
||
namespace Carbonate; | ||
|
||
using Core; | ||
|
||
/// <summary> | ||
/// Defines a provider for push-based notifications. | ||
/// </summary> | ||
public interface IPushReactable : IReactable<IReceiveReactor>, IPushable | ||
{ | ||
} |
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
20 changes: 20 additions & 0 deletions
20
Documentation/ReleaseNotes/PreviewReleases/Release-Notes-v1.0.0-preview.10.md
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 @@ | ||
<h1 align="center" style='color:mediumseagreen;font-weight:bold'> | ||
Carbonate Preview Release Notes - v1.0.0-preview.10 | ||
</h1> | ||
|
||
<h2 align="center" style='font-weight:bold'>Quick Reminder</h2> | ||
|
||
<div align="center"> | ||
|
||
As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼 | ||
</div> | ||
|
||
--- | ||
|
||
<h2 style="font-weight:bold" align="center">New Features ✨</h2> | ||
|
||
1. [#51](https://github.com/KinsonDigital/Carbonate/issues/51) - Added the 2 interfaces below: | ||
>💡The classes `PushReactable` and `PullReactable` now inherit these interfaces respectively which | ||
> give the ability to use the interface types instead of the class types and still get access to the push and pull methods. This also increases testability and mocking. | ||
- `IPushReactable` | ||
- `IPullReactable` |