-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for eventing (#166)
Signed-off-by: Florian Bacher <florian.bacher@dynatrace.com>
- Loading branch information
Showing
14 changed files
with
1,054 additions
and
11 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
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,25 @@ | ||
namespace OpenFeature.Constant | ||
{ | ||
/// <summary> | ||
/// The ProviderEventTypes enum represents the available event types of a provider. | ||
/// </summary> | ||
public enum ProviderEventTypes | ||
{ | ||
/// <summary> | ||
/// ProviderReady should be emitted by a provider upon completing its initialisation. | ||
/// </summary> | ||
ProviderReady, | ||
/// <summary> | ||
/// ProviderError should be emitted by a provider upon encountering an error. | ||
/// </summary> | ||
ProviderError, | ||
/// <summary> | ||
/// ProviderConfigurationChanged should be emitted by a provider when a flag configuration has been changed. | ||
/// </summary> | ||
ProviderConfigurationChanged, | ||
/// <summary> | ||
/// ProviderStale should be emitted by a provider when it goes into the stale state. | ||
/// </summary> | ||
ProviderStale | ||
} | ||
} |
Oops, something went wrong.