Uses of Class
org.redisson.api.TimeSeriesEntry
Packages that use TimeSeriesEntry
-
Uses of TimeSeriesEntry in org.redisson
Methods in org.redisson that return TimeSeriesEntryModifier and TypeMethodDescriptionRedissonTimeSeries.firstEntry()RedissonTimeSeries.getAndRemoveEntry(long timestamp) RedissonTimeSeries.getEntry(long timestamp) RedissonTimeSeries.lastEntry()RedissonTimeSeries.pollFirstEntry()RedissonTimeSeries.pollLastEntry()Methods in org.redisson that return types with arguments of type TimeSeriesEntryModifier and TypeMethodDescriptionRedissonTimeSeries.entryRange(long startTimestamp, long endTimestamp) RedissonTimeSeries.entryRange(long startTimestamp, long endTimestamp, int limit) RedissonTimeSeries.entryRangeAsync(long startTimestamp, long endTimestamp) RedissonTimeSeries.entryRangeAsync(long startTimestamp, long endTimestamp, int limit) RedissonTimeSeries.entryRangeReversed(long startTimestamp, long endTimestamp) RedissonTimeSeries.entryRangeReversed(long startTimestamp, long endTimestamp, int limit) RedissonTimeSeries.entryRangeReversedAsync(long startTimestamp, long endTimestamp) RedissonTimeSeries.entryRangeReversedAsync(long startTimestamp, long endTimestamp, int limit) RedissonTimeSeries.firstEntries(int count) RedissonTimeSeries.firstEntriesAsync(int count) RedissonTimeSeries.firstEntryAsync()RedissonTimeSeries.getAndRemoveEntryAsync(long timestamp) RedissonTimeSeries.getEntryAsync(long timestamp) RedissonTimeSeries.lastEntries(int count) RedissonTimeSeries.lastEntriesAsync(int count) RedissonTimeSeries.lastEntryAsync()RedissonTimeSeries.pollFirstEntries(int count) RedissonTimeSeries.pollFirstEntriesAsync(int count) RedissonTimeSeries.pollFirstEntryAsync()RedissonTimeSeries.pollLastEntries(int count) RedissonTimeSeries.pollLastEntriesAsync(int count) RedissonTimeSeries.pollLastEntryAsync()Method parameters in org.redisson with type arguments of type TimeSeriesEntryModifier and TypeMethodDescriptionvoidRedissonTimeSeries.addAll(Collection<TimeSeriesEntry<V, L>> entries) voidRedissonTimeSeries.addAll(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) RedissonTimeSeries.addAllAsync(Collection<TimeSeriesEntry<V, L>> entries) RedissonTimeSeries.addAllAsync(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) -
Uses of TimeSeriesEntry in org.redisson.api
Methods in org.redisson.api that return TimeSeriesEntryModifier and TypeMethodDescriptionRTimeSeries.firstEntry()Returns the head entry ornullif this time-series collection is empty.RTimeSeries.getAndRemoveEntry(long timestamp) Removes and returns entry by specifiedtimestamp.RTimeSeries.getEntry(long timestamp) Returns time series entry by specifiedtimestampornullif it doesn't exist.RTimeSeries.lastEntry()Returns the tail entry ornullif this time-series collection is empty.RTimeSeries.pollFirstEntry()Removes and returns head entry ornullif this time-series collection is empty.RTimeSeries.pollLastEntry()Removes and returns the tail entry ornullif this time-series collection is empty.Methods in org.redisson.api that return types with arguments of type TimeSeriesEntryModifier and TypeMethodDescriptionRTimeSeries.entryRange(long startTimestamp, long endTimestamp) Returns ordered entries of this time-series collection within timestamp range.RTimeSeries.entryRange(long startTimestamp, long endTimestamp, int limit) Returns ordered entries of this time-series collection within timestamp range.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.entryRange(long startTimestamp, long endTimestamp) Returns ordered entries of this time-series collection within timestamp range.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.entryRange(long startTimestamp, long endTimestamp, int limit) Returns ordered entries of this time-series collection within timestamp range.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.entryRange(long startTimestamp, long endTimestamp) Returns ordered entries of this time-series collection within timestamp range.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.entryRange(long startTimestamp, long endTimestamp, int limit) Returns ordered entries of this time-series collection within timestamp range.RTimeSeriesAsync.entryRangeAsync(long startTimestamp, long endTimestamp) Returns ordered entries of this time-series collection within timestamp range.RTimeSeriesAsync.entryRangeAsync(long startTimestamp, long endTimestamp, int limit) Returns ordered entries of this time-series collection within timestamp range.RTimeSeries.entryRangeReversed(long startTimestamp, long endTimestamp) Returns entries of this time-series collection in reverse order within timestamp range.RTimeSeries.entryRangeReversed(long startTimestamp, long endTimestamp, int limit) Returns entries of this time-series collection in reverse order within timestamp range.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.entryRangeReversed(long startTimestamp, long endTimestamp) Returns entries of this time-series collection in reverse order within timestamp range.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.entryRangeReversed(long startTimestamp, long endTimestamp, int limit) Returns entries of this time-series collection in reverse order within timestamp range.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.entryRangeReversed(long startTimestamp, long endTimestamp) Returns entries of this time-series collection in reverse order within timestamp range.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.entryRangeReversed(long startTimestamp, long endTimestamp, int limit) Returns entries of this time-series collection in reverse order within timestamp range.RTimeSeriesAsync.entryRangeReversedAsync(long startTimestamp, long endTimestamp) Returns entries of this time-series collection in reverse order within timestamp range.RTimeSeriesAsync.entryRangeReversedAsync(long startTimestamp, long endTimestamp, int limit) Returns entries of this time-series collection in reverse order within timestamp range.RTimeSeries.firstEntries(int count) Returns the head entries of this time-series collection.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.firstEntries(int count) Returns the head entries of this time-series collection.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.firstEntries(int count) Returns the head entries of this time-series collection.RTimeSeriesAsync.firstEntriesAsync(int count) Returns the head entries of this time-series collection.reactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.firstEntry()Returns the head entry ornullif this time-series collection is empty.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.firstEntry()Returns the head entry ornullif this time-series collection is empty.RTimeSeriesAsync.firstEntryAsync()Returns the head entry ornullif this time-series collection is empty.reactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.getAndRemoveEntry(long timestamp) Removes and returns entry by specifiedtimestamp.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.getAndRemoveEntry(long timestamp) Removes and returns entry by specifiedtimestamp.RTimeSeriesAsync.getAndRemoveEntryAsync(long timestamp) Removes and returns entry by specifiedtimestamp.reactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.getEntry(long timestamp) Returns time series entry by specifiedtimestampornullif it doesn't exist.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.getEntry(long timestamp) Returns time series entry by specifiedtimestampornullif it doesn't exist.RTimeSeriesAsync.getEntryAsync(long timestamp) Returns time series entry by specifiedtimestampornullif it doesn't exist.RTimeSeries.lastEntries(int count) Returns the tail entries of this time-series collection.reactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.lastEntries(int count) Returns the tail entries of this time-series collection.io.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.lastEntries(int count) Returns the tail entries of this time-series collection.RTimeSeriesAsync.lastEntriesAsync(int count) Returns the tail entries of this time-series collection.reactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.lastEntry()Returns the tail entry ornullif this time-series collection is empty.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.lastEntry()Returns the tail entry ornullif this time-series collection is empty.RTimeSeriesAsync.lastEntryAsync()Returns the tail entry ornullif this time-series collection is empty.RTimeSeries.pollFirstEntries(int count) Removes and returns head entriesreactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.pollFirstEntries(int count) Removes and returns head entriesio.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.pollFirstEntries(int count) Removes and returns head entriesRTimeSeriesAsync.pollFirstEntriesAsync(int count) Removes and returns head entriesreactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.pollFirstEntry()Removes and returns head entry ornullif this time-series collection is empty.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.pollFirstEntry()Removes and returns head entry ornullif this time-series collection is empty.RTimeSeriesAsync.pollFirstEntryAsync()Removes and returns head entry ornullif this time-series collection is empty.RTimeSeries.pollLastEntries(int count) Removes and returns tail entriesreactor.core.publisher.Mono<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesReactive.pollLastEntries(int count) Removes and returns tail entriesio.reactivex.rxjava3.core.Single<Collection<TimeSeriesEntry<V,L>>> RTimeSeriesRx.pollLastEntries(int count) Removes and returns tail entriesRTimeSeriesAsync.pollLastEntriesAsync(int count) Removes and returns tail entriesreactor.core.publisher.Mono<TimeSeriesEntry<V,L>> RTimeSeriesReactive.pollLastEntry()Removes and returns the tail entry ornullif this time-series collection is empty.io.reactivex.rxjava3.core.Maybe<TimeSeriesEntry<V,L>> RTimeSeriesRx.pollLastEntry()Removes and returns the tail entry ornullif this time-series collection is empty.RTimeSeriesAsync.pollLastEntryAsync()Removes and returns the tail entry ornullif this time-series collection is empty.Method parameters in org.redisson.api with type arguments of type TimeSeriesEntryModifier and TypeMethodDescriptionvoidRTimeSeries.addAll(Collection<TimeSeriesEntry<V, L>> entries) Adds all entries collection to this time-series collection.voidRTimeSeries.addAll(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) Adds all time series entries collection to this time-series collection.reactor.core.publisher.Mono<Void>RTimeSeriesReactive.addAll(Collection<TimeSeriesEntry<V, L>> entries) Adds all entries collection to this time-series collection.reactor.core.publisher.Mono<Void>RTimeSeriesReactive.addAll(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) Adds all time series entries collection to this time-series collection.io.reactivex.rxjava3.core.CompletableRTimeSeriesRx.addAll(Collection<TimeSeriesEntry<V, L>> entries) Adds all entries collection to this time-series collection.io.reactivex.rxjava3.core.CompletableRTimeSeriesRx.addAll(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) Adds all time series entries collection to this time-series collection.RTimeSeriesAsync.addAllAsync(Collection<TimeSeriesEntry<V, L>> entries) Adds all entries collection to this time-series collection.RTimeSeriesAsync.addAllAsync(Collection<TimeSeriesEntry<V, L>> entries, Duration timeToLive) Adds all time series entries collection to this time-series collection. -
Uses of TimeSeriesEntry in org.redisson.client.protocol.decoder
Methods in org.redisson.client.protocol.decoder that return TimeSeriesEntryModifier and TypeMethodDescriptionMethods in org.redisson.client.protocol.decoder that return types with arguments of type TimeSeriesEntry