Skip to content

Commit

Permalink
Adjusting comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
AddictedCS committed Oct 29, 2024
1 parent b577381 commit c262106
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class TrackCoverageLengthEntryFilter : IRealtimeResultEntryFilter
/// Initializes a new instance of the <see cref="TrackCoverageLengthEntryFilter"/> class.
/// </summary>
/// <param name="secondsThreshold">Minimal threshold measured in seconds that will be used to filter incoming query results.</param>
/// <param name="waitTillCompletion">A flag indicating whether to wait till completion or not</param>
/// <param name="waitTillCompletion">A flag indicating whether to wait till completion or not.</param>
public TrackCoverageLengthEntryFilter(double secondsThreshold, bool waitTillCompletion)
{
if (secondsThreshold < 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public RealtimeQueryConfiguration(AVQueryConfiguration queryConfiguration,
/// </summary>
/// <remarks>
/// The following implementations are recommended for use: <br />
/// <see cref="MinTrackCoverageOrMinTrackLengthRealtimeEntryFilter"/> will emit the result without waiting it to complete.
/// As an example for initialization values <i>minCoverage = 0.2</i> and <i>minTrackLength = 10</i>, a 1-minute long track will be emitted 6 times in the <see cref="OngoingCallback"/>.
/// <see cref="TrackCoverageLengthEntryFilter"/> instantiated with waitTillCompletion=false will emit the result without waiting it to complete.
/// As an example for initialization values minTrackLength = 10, a 1-minute-long track will be emitted 6 times in the <see cref="OngoingCallback"/>.
/// </remarks>
public IRealtimeResultEntryFilter OngoingResultEntryFilter { get; set; }

Expand Down

0 comments on commit c262106

Please sign in to comment.