lianetm commented on code in PR #21412:
URL: https://github.com/apache/kafka/pull/21412#discussion_r2774677656
##########
build.gradle:
##########
@@ -2038,6 +2038,7 @@ project(':clients') {
include "**/org/apache/kafka/common/metrics/*"
include "**/org/apache/kafka/common/metrics/stats/*"
include "**/org/apache/kafka/common/quota/*"
+ include "**/org/apache/kafka/common/record/*"
Review Comment:
this can now include all classes under the record package (it's only
TimestampType for now)
##########
clients/src/main/java/org/apache/kafka/common/record/internal/package-info.java:
##########
@@ -0,0 +1,21 @@
+/*
+ * 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.
+ */
+/**
+ * Provides the low-level representation of records and record batches used by
clients and servers.
+ * <strong>This package is not a supported Kafka API; the implementation may
change without warning between minor or patch releases.</strong>
+ */
+package org.apache.kafka.common.record.internal;
Review Comment:
same private-package description we had, but now at the "internal"
subpackage level
##########
clients/src/main/java/org/apache/kafka/common/record/package-info.java:
##########
@@ -15,7 +15,6 @@
* limitations under the License.
*/
/**
- * Provides the low-level representation of records and record batches used by
clients and servers.
- * <strong>This package is not a supported Kafka API; the implementation may
change without warning between minor or patch releases.</strong>
+ * Provides utility components related to Kafka records.
Review Comment:
updated info for the package that was public with TimestampType
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]