Uses of Interface
com.pushtechnology.diffusion.client.features.TimeSeries.RangeQuery

Packages that use TimeSeries.RangeQuery
Package
Description
Client API : Standard Features.
  • Uses of TimeSeries.RangeQuery in com.pushtechnology.diffusion.client.features

    Modifier and Type
    Method
    Description
    TimeSeries.RangeQuery.allEdits()
    Return a copy of this RangeQuery configured to perform an edit range query with the edit range that selects all edits in the entire time series.
    TimeSeries.RangeQuery.as(Class<T> valueType)
    Return a copy of this RangeQuery with a different query value type.
    TimeSeries.RangeQuery.editRange()
    Return a copy of this RangeQuery configured to perform a value range query with the edit range set to the entire time series.
    TimeSeries.RangeQuery.forEdits()
    Return a copy of this RangeQuery configured to perform an edit range query with the view range set to the entire time series.
    TimeSeries.RangeQuery.forValues()
    Return a copy of this RangeQuery configured to perform a value range query with the view range set to the entire time series.
    TimeSeries.RangeQuery.from(long sequence)
    Return a copy of this RangeQuery with the anchor of the current range configured to be an absolute sequence number.
    TimeSeries.RangeQuery.from(Instant instant)
    Return a copy of this RangeQuery with the anchor of the current range configured to be an absolute time.
    TimeSeries.RangeQuery.from(Date date)
    Return a copy of this RangeQuery with the anchor of the current range configured to be an absolute time.
    TimeSeries.RangeQuery.fromLast(long count)
    Return a copy of this RangeQuery with the anchor of the current range configured to be a relative offset before the end of the time series.
    TimeSeries.RangeQuery.fromLast(Duration timeSpan)
    Return a copy of this RangeQuery with the anchor of the current range configured to be a relative time from the timestamp of the last event in the time series.
    TimeSeries.RangeQuery.fromLastMillis(long timeSpan)
    Return a copy of this RangeQuery with the anchor of the current range configured to be a relative time from the timestamp of the last event in the time series.
    TimeSeries.RangeQuery.fromStart()
    Return a copy of this RangeQuery with the anchor of the current range configured to be the start of the time series.
    TimeSeries.RangeQuery.latestEdits()
    Return a copy of this RangeQuery configured to perform an edit range query with the edit range that selects latest edits in the entire time series.
    TimeSeries.RangeQuery.limit(long count)
    Return a copy of this RangeQuery that returns at most count events.
    TimeSeries.RangeQuery.next(long count)
    Return a copy of this RangeQuery with the span of the current range configured to select a range of events following the anchor.
    TimeSeries.RangeQuery.next(Duration timeSpan)
    Return a copy of this RangeQuery with the span of the current range configured to select a temporal range of events following the anchor.
    TimeSeries.RangeQuery.nextMillis(long timeSpan)
    Return a copy of this RangeQuery with the span of the current range configured to select a temporal range of events following the anchor.
    TimeSeries.RangeQuery.previous(long count)
    Return a copy of this RangeQuery with the span of the current range configured to select a range of events preceding the anchor.
    TimeSeries.RangeQuery.previous(Duration timeSpan)
    Return a copy of this RangeQuery with the span of the current range configured to select a temporal range of events preceding the anchor.
    TimeSeries.RangeQuery.previousMillis(long timeSpan)
    Return a copy of this RangeQuery with the span of the current range configured to select a temporal range of events preceding the anchor.
    TimeSeries.rangeQuery()
    Return a default range query that performs a value range query of an entire time series.
    TimeSeries.RangeQuery.to(long sequence)
    Return a copy of this RangeQuery with the span of the current range configured to end at an absolute sequence number.
    TimeSeries.RangeQuery.to(Instant instant)
    Return a copy of this RangeQuery with the span of the current range configured to end at an absolute time.
    TimeSeries.RangeQuery.to(Date date)
    Return a copy of this RangeQuery with the span of the current range configured to end at an absolute time.
    TimeSeries.RangeQuery.toStart()
    Return a copy of this RangeQuery with the span of the current range configured to end at the start of the time series.
    TimeSeries.RangeQuery.untilLast(long count)
    Return a copy of this RangeQuery with the span of the current range configured to end a number of events before the end of the time series.
    TimeSeries.RangeQuery.untilLast(Duration timeSpan)
    Return a copy of this RangeQuery 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.
    TimeSeries.RangeQuery.untilLastMillis(long timeSpan)
    Return a copy of this RangeQuery 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.