Interface IRangeQuery<TValue>

The builder for queries that select a range of events from a time series.

Inherited Members
IQuery<TValue>.SelectFromAsync(String)
IQuery<TValue>.SelectFromAsync(String, CancellationToken)
Namespace: PushTechnology.ClientInterface.Client.Features.TimeSeries
Assembly: Diffusion.Client.dll
Syntax
public interface IRangeQuery<TValue> : IQuery<TValue>
Type Parameters
Name Description
TValue

The value data type.

Remarks

See ITimeSeries for an overview of the various types of range query:

  • value range queries
  • latest edits edit range queries
  • all edits edit range queries

RangeQuery returns a default IRangeQuery<TValue>. Further queries with different parameters can be configured using the methods of this interface. IRangeQuery<TValue> instances are immutable. Each method returns a copy of this query with a modified setting. Method calls can be chained together in a fluent manner to create a query.

Creating value range queries

A value range query returns a merged view of part of a time series. This is the most common time series query and appropriate for most applications.

A value range query begins with the ForValues() operator, followed by the view range. The view range determines the range of original events of the time series that are of interest. See Range expressions below for the various ways to specify a range.

The events returned by the query are constrained by an optional edit range, introduced by the EditRange() operator. An event will only be included in the result if it is in the edit range. Let's consider some examples to see how the view range and the edit range interact.

Query Meaning
RangeQuery.ForValues(); For each original event in the time series, either return the latest edit event or if it has no edit events, return the original event.
RangeQuery.ForValues().From( 100 ).To( 150 ); For each original event with a sequence number between 100 and 150 (inclusive), either return the latest edit event or if it has no edit events, return the original event.
RangeQuery.ForValues().From( 100 ).To( 150 ).EditRange().From( 400 ); For each original event with a sequence number between 100 and 150 (inclusive), return the latest edit event with a sequence number greater than or equal to 400.
The result of this query will not include any original events because there is no overlap between the view range and the edit range.

Value range queries can be further refined using the Limit(Int64) and As<TNewValue>() operators.

Creating edit range queries

An edit range query returns an unmerged view of a time series than can include both original events and the edit events that replace them. Edit range queries are rarely needed - value range queries satisfy most use cases.

An edit range query begins with the ForEdits() operator, followed by the view range. The view range determines the range of original events the time series that are of interest. The result will only contain original events that are in the view range, and edit events for original events in the view range. See Range expressions below for the various ways to specify a range.

The events returned by the query are constrained by an optional edit range, introduced by the LatestEdits() or AllEdits() operators. An event will only be included in the result if it is in the edit range. Let's consider some example edit range queries.

Query Meaning
RangeQuery.ForEdits(); Return all events in a time series.
RangeQuery.ForEdits().From( 100 ).To( 150 ); Return the original events with a sequence number between 100 and 150 (inclusive) and all edit events in the time series that refer to the original events.
RangeQuery.ForEdits().From( 100 ).To( 150 ).LatestEdits(); Return the original events with a sequence number between 100 and 150 (inclusive) and the latest edit events in the time series that refer to the original events.
RangeQuery.ForEdits().From( 100 ).To( 150 ).AllEdits().From( 400 ); For each original event with a sequence number between 100 and 150, (inclusive) return all edit events with a sequence number greater than or equal to 400.
The result of this query will not include any original events because there is no overlap between the view range and the edit range.

Edit range queries can be further refined using the Limit(Int64) and As<TNewValue>() operators.

Range expressions

Range expressions are used to specify the view and edit ranges in value range and edit range queries. Each range expression has an anchor that determines where to start, and a span that determines where the range ends. Both anchor and span are inclusive - if an anchor or span falls on an event, the event is included in the result.

Both anchor and the span are optional. If the anchor is unspecified, the range begins at the start of the time series. If the span is unspecified, the range continues until the end of the time series.

Anchors

There are five ways to specify an anchor.

Anchor Meaning
From(Int64) Sets the anchor at an absolute sequence number.
FromStart() Sets the anchor at the start of the time series.
From(DateTimeOffset) Sets the anchor at an absolute time.
FromLast(Int64) Sets the anchor at a relative offset before the end of the time series. For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.
FromLast(TimeSpan) Sets the anchor at a relative time before the timestamp of the last event of the time series.

An anchor point can be before the start or after the end of the time series.

Spans

There are nine ways to specify a span.

Span Meaning
To(Int64) The range ends at an absolute sequence number. The sequence argument may be before or after the anchor.
ToStart() The range ends at the start of the time series.
To(DateTimeOffset) The range ends at an absolute time. The timeSpan argument may be before or after the anchor.
Next(Int64) The range ends at an event that is a relative number of events after the anchor. For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.
Next(TimeSpan) The range ends at an event that is a relative time after the anchor.
Previous(Int64) The range ends at an event that is a relative number of events before the anchor. For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.
Previous(TimeSpan) The range ends at an event that is a relative time before the anchor.
UntilLast(Int64) The range ends at an event that is a relative number of events before the end of the time series. For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.
UntilLast(TimeSpan) The range ends at an event that is a relative time before the timestamp of the last event of the time series.

A span can specify an end point that is before the start or after the end of the time series.

If the span specifies an end point after the anchor, the range includes the first event at or following the anchor and ends at the last event at or preceding the end point. If the span specifies an end point before the anchor, the range includes the first event at or preceding the anchor and ends at the last event at or after the end point.

Using the builder methods

RangeQuery builder methods - those that return another RangeQuery - can be applied in any order with the following exceptions:

  • EditRange() only applies to value range queries, so cannot follow ForEdits() without an intervening ForValues().
  • LatestEdits() and AllEdits() only apply to edit range queries, so cannot follow ForValues() without an intervening ForEdits().

Each method overrides some configuration of the RangeQuery to which it is applied, as summarized in the following table.

Builder method Operator type Overriden configuration
ForValues() Value range Overrides the existing query type to create a new value range query. Overrides the existing view range with a new view range that selects the entire time series. The existing edit range is copied unchanged.
ForEdits() Value range Overrides the existing query type to create a new edit range query that includes all edits. Overrides the existing view range with a new view range that selects the entire time series. The existing edit range is copied unchanged.
EditRange() Edit range Overrides the existing edit range with a new edit range that selects the entire time series. The existing view range is copied unchanged.
LatestEdits(), AllEdits() Edit range Overrides the existing edit range with a new edit range that selects the entire time series. The existing view range is copied unchanged.
From(Int64), FromStart(), FromLast(Int64) Anchor Overrides the anchor of the current range.
To(Int64), ToStart(), Next(Int64), Previous(Int64), UntilLast(Int64) Span Overrides the span of the current range.
Limit(Int64) Limit Overrides the limit.
As<TNewValue>() Query value type Overrides the query value type.

Added in version 6.1.

Methods

AllEdits()

Returns a copy of this IRangeQuery<TValue> configured to perform an edit range query with the edit range that selects all edits in the entire time series.

Declaration
IRangeQuery<TValue> AllEdits()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query configured to perform an edit range query with a new edit range that selects all edits in the entire time series.

Remarks

This operator can only be applied to edit range queries. The default query returned by RangeQuery is a value range query. The ForEdits() operator can be used to create an edit range query from a value range query.

Operator type: edit range

As<TNewValue>()

Returns a copy of this IRangeQuery<TValue> with a different query value type.

Declaration
IRangeQuery<TNewValue> As<TNewValue>()
Returns
Type Description
IRangeQuery<TNewValue>

The copy of this range query with a new query value type.

Type Parameters
Name Description
TNewValue

The new value type.

Remarks

A query can only be evaluated successfully against time series topics with a compatible event data type. If a query method is called for a time series topic with an incompatible event data type, the query will complete exceptionally.

If the event data type of the time series topic is known, compatibility of a particular value type can be checked using CanReadAs(Type). The default RangeQuery has a query value type of IBytes, which is compatible with all time series value data types.

Operator type: query value type

EditRange()

Returns a copy of this IRangeQuery<TValue> configured to perform a value range query with the edit range set to the entire time series.

Declaration
IRangeQuery<TValue> EditRange()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query configured to perform a view range query with a new edit range that selects the entire time series.

Remarks

This operator can only be applied to value range queries. The default query returned by RangeQuery is a value range query. The ForValues() operator can be used to create a value range query from an edit range query.

Operator type: edit range

ForEdits()

Returns a copy of this IRangeQuery<TValue> configured to perform an edit range query with the view range set to the entire time series.

Declaration
IRangeQuery<TValue> ForEdits()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query configured to perform an edit range query with a new view range that selects the entire time series.

Remarks

Operator type: value range

ForValues()

Returns a copy of this IRangeQuery<TValue> configured to perform a value range query with the view range set to the entire time series.

Declaration
IRangeQuery<TValue> ForValues()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query configured to perform a view range query with a new view range that selects the entire time series.

Remarks

Operator type: value range

From(DateTimeOffset)

Returns a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be an absolute time.

Declaration
IRangeQuery<TValue> From(DateTimeOffset dateTimeOffset)
Parameters
Type Name Description
DateTimeOffset dateTimeOffset

Absolute time specifying the anchor of the range.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

Operator type: anchor

From(Int64)

Returns a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be an absolute sequence number.

Declaration
IRangeQuery<TValue> From(long sequence)
Parameters
Type Name Description
System.Int64 sequence

The absolute sequence number specifying the anchor of the returned range.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

Operator type: anchor

FromLast(Int64)

Returns a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be a relative offset before the end of the time series.

Declaration
IRangeQuery<TValue> FromLast(long count)
Parameters
Type Name Description
System.Int64 count

The anchor as a number of events before the end of the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.

Operator type: anchor

FromLast(TimeSpan)

Returns a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be a relative time from the timestamp of the last event in the time series.

Declaration
IRangeQuery<TValue> FromLast(TimeSpan timeSpan)
Parameters
Type Name Description
TimeSpan timeSpan

The time-span relative to the timestamp of the latest event in the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

Operator type: anchor

See Also
FromLastMilliseconds(Int64)

FromLastMilliseconds(Int64)

Returns a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be a relative time from the timestamp of the last event in the time series.

Declaration
IRangeQuery<TValue> FromLastMilliseconds(long milliseconds)
Parameters
Type Name Description
System.Int64 milliseconds

The milliseconds relative to the timestamp of the latest event in the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

Operator type: anchor

See Also
FromLast(TimeSpan)

FromStart()

Return a copy of this IRangeQuery<TValue> with the anchor of the current range configured to be the start of the time series.

Declaration
IRangeQuery<TValue> FromStart()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new anchor.

Remarks

There is a difference between FromStart() and From( 0 ) if the range also ends before the first event of the time series. For example, FromStart().ToStart() is always empty, but From( 0 ).ToStart() includes the event with sequence number 0.

Operator type: anchor

LatestEdits()

Returns a copy of this IRangeQuery<TValue> configured to perform an edit range query with the edit range that selects latest edits in the entire time series.

Declaration
IRangeQuery<TValue> LatestEdits()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query configured to perform an edit range query with a new edit range that selects the latest edits in the entire time series.

Remarks

This operator can only be applied to edit range queries. The default query returned by RangeQuery is a value range query. The ForEdits() operator can be used to create an edit range query from a value range query.

Operator type: edit range

Limit(Int64)

Returns a copy of this IRangeQuery<TValue> that returns at most count events.

Declaration
IRangeQuery<TValue> Limit(long count)
Parameters
Type Name Description
System.Int64 count

The maximum number of events to return.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new limit.

Remarks

If the query would otherwise select more than count events, only the latest count values (those with the highest sequence numbers) are returned.

This is most useful when a temporal span has been configured with Next(TimeSpan) or Previous(TimeSpan), where the potential number of returned events is unknown.

IsComplete can be used to determine whether a query has returned an incomplete result.

Operator type: limit

Next(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to select a range of events following the anchor.

Declaration
IRangeQuery<TValue> Next(long count)
Parameters
Type Name Description
System.Int64 count

The end of the range of events to select following the anchor.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.

Operator type: span

Next(TimeSpan)

Return a copy of this IRangeQuery<TValue> with the span of the current range configured to select a temporal range of events following the anchor.

Declaration
IRangeQuery<TValue> Next(TimeSpan timeSpan)
Parameters
Type Name Description
TimeSpan timeSpan

The time span of events following the anchor to select.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
NextMilliseconds(Int64)

NextMilliseconds(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to select a temporal range of events following the anchor.

Declaration
IRangeQuery<TValue> NextMilliseconds(long milliseconds)
Parameters
Type Name Description
System.Int64 milliseconds

The time span in milliseconds of events following the anchor to select.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
Next(TimeSpan)

Previous(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to select a range of events preceding the anchor.

Declaration
IRangeQuery<TValue> Previous(long count)
Parameters
Type Name Description
System.Int64 count

The end of the range of events to select preceding the anchor.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.

Operator type: span

Previous(TimeSpan)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to select a temporal range of events preceding the anchor.

Declaration
IRangeQuery<TValue> Previous(TimeSpan timeSpan)
Parameters
Type Name Description
TimeSpan timeSpan

The time span of events preceding the anchor to select.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
PreviousMilliseconds(Int64)

PreviousMilliseconds(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to select a temporal range of events preceding the anchor.

Declaration
IRangeQuery<TValue> PreviousMilliseconds(long milliseconds)
Parameters
Type Name Description
System.Int64 milliseconds

The time span in milliseconds of events preceding the anchor to select.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
Previous(TimeSpan)

To(DateTimeOffset)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end at an absolute time.

Declaration
IRangeQuery<TValue> To(DateTimeOffset dateTimeOffset)
Parameters
Type Name Description
DateTimeOffset dateTimeOffset

The absolute time specifying the end of the range.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

To(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end at an absolute sequence number.

Declaration
IRangeQuery<TValue> To(long sequence)
Parameters
Type Name Description
System.Int64 sequence

The absolute sequence number specifying the end of the returned range.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

ToStart()

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end at the start of the time series.

Declaration
IRangeQuery<TValue> ToStart()
Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

There is a difference between ToStart() and To( 0 ) if the range also starts before the first event of the time series. For example, FromStart().ToStart() is always empty, but FromStart().To( 0 ) includes the event with sequence number 0.

Operator type: span

UntilLast(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end a number of events before the end of the time series.

Declaration
IRangeQuery<TValue> UntilLast(long count)
Parameters
Type Name Description
System.Int64 count

The end of the range of events to select as a number of events before the end of the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

For value range queries, count is the number of original events. For edit range queries, count is the number of events of any type.

Operator type: span

UntilLast(TimeSpan)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end at a relative time from the timestamp of the last event in the time series.

Declaration
IRangeQuery<TValue> UntilLast(TimeSpan timeSpan)
Parameters
Type Name Description
TimeSpan timeSpan

The end of the range of events to select relative to the timestamp of the latest event in the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
UntilLastMilliseconds(Int64)

UntilLastMilliseconds(Int64)

Returns a copy of this IRangeQuery<TValue> with the span of the current range configured to end at a relative time from the timestamp of the last event in the time series.

Declaration
IRangeQuery<TValue> UntilLastMilliseconds(long milliseconds)
Parameters
Type Name Description
System.Int64 milliseconds

The end of the range of events to select as a number of milliseconds relative to the timestamp of the latest event in the time series.

Returns
Type Description
IRangeQuery<TValue>

The copy of this range query with a new span.

Remarks

Operator type: span

See Also
UntilLast(TimeSpan)

See Also

ITimeSeries
RangeQuery
Back to top