-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ksqlDB.RestApi.Client]: added doc strings for WindowType enum
- Loading branch information
1 parent
6eedf93
commit b408a02
Showing
1 changed file
with
16 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
namespace ksqlDB.RestApi.Client.KSql.RestApi.Enums; | ||
namespace ksqlDB.RestApi.Client.KSql.RestApi.Enums; | ||
|
||
/// <summary> | ||
/// Represents different windowing types in ksqlDB that have distinct time boundaries. | ||
/// </summary> | ||
public enum WindowType | ||
{ | ||
/// <summary> | ||
/// Represents a session window combines records into a session, delineating periods of activity separated by a defined duration of inactivity, known as "idleness". | ||
/// </summary> | ||
Session, | ||
|
||
/// <summary> | ||
/// Represents a hopping window where events are grouped into fixed-size, possibly overlapping, time intervals. | ||
/// </summary> | ||
Hopping, | ||
|
||
/// <summary> | ||
/// Represents a tumbling window where events are grouped into fixed-size, non-overlapping, time intervals. | ||
/// </summary> | ||
Tumbling | ||
} | ||
} |