kafka RangeQuery 源码
kafka RangeQuery 代码
文件路径:/streams/src/main/java/org/apache/kafka/streams/query/RangeQuery.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.kafka.streams.query;
import org.apache.kafka.common.annotation.InterfaceStability.Evolving;
import org.apache.kafka.streams.state.KeyValueIterator;
import java.util.Optional;
/**
* Interactive query for issuing range queries and scans over KeyValue stores.
* <p>
* A range query retrieves a set of records, specified using an upper and/or lower bound on the keys.
* <p>
* A scan query retrieves all records contained in the store.
* <p>
*/
@Evolving
public final class RangeQuery<K, V> implements Query<KeyValueIterator<K, V>> {
private final Optional<K> lower;
private final Optional<K> upper;
private RangeQuery(final Optional<K> lower, final Optional<K> upper) {
this.lower = lower;
this.upper = upper;
}
/**
* Interactive range query using a lower and upper bound to filter the keys returned.
* @param lower The key that specifies the lower bound of the range
* @param upper The key that specifies the upper bound of the range
* @param <K> The key type
* @param <V> The value type
*/
public static <K, V> RangeQuery<K, V> withRange(final K lower, final K upper) {
return new RangeQuery<>(Optional.of(lower), Optional.of(upper));
}
/**
* Interactive range query using an upper bound to filter the keys returned.
* @param upper The key that specifies the upper bound of the range
* @param <K> The key type
* @param <V> The value type
*/
public static <K, V> RangeQuery<K, V> withUpperBound(final K upper) {
return new RangeQuery<>(Optional.empty(), Optional.of(upper));
}
/**
* Interactive range query using a lower bound to filter the keys returned.
* @param lower The key that specifies the lower bound of the range
* @param <K> The key type
* @param <V> The value type
*/
public static <K, V> RangeQuery<K, V> withLowerBound(final K lower) {
return new RangeQuery<>(Optional.of(lower), Optional.empty());
}
/**
* Interactive scan query that returns all records in the store.
* @param <K> The key type
* @param <V> The value type
*/
public static <K, V> RangeQuery<K, V> withNoBounds() {
return new RangeQuery<>(Optional.empty(), Optional.empty());
}
/**
* The lower bound of the query, if specified.
*/
public Optional<K> getLowerBound() {
return lower;
}
/**
* The upper bound of the query, if specified
*/
public Optional<K> getUpperBound() {
return upper;
}
}
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦