-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KAFKA-7277: Migrate Streams API to Duration instead of longMs times (#…
…5682) Reviewers: Johne Roesler <[email protected]>, Matthias J. Sax <[email protected]>, Bill Bejeck <[email protected]>, Guozhang Wang <[email protected]>
- Loading branch information
Showing
100 changed files
with
1,311 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
streams/src/main/java/org/apache/kafka/streams/internals/ApiUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* 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.internals; | ||
|
||
import java.time.Duration; | ||
import java.time.Instant; | ||
import java.util.Objects; | ||
|
||
public final class ApiUtils { | ||
private ApiUtils() { | ||
} | ||
|
||
/** | ||
* Validates that milliseconds from {@code duration} can be retrieved. | ||
* @param duration Duration to check. | ||
* @param name Name of params for an error message. | ||
* @return Milliseconds from {@code duration}. | ||
*/ | ||
public static long validateMillisecondDuration(final Duration duration, final String name) { | ||
try { | ||
if (duration == null) | ||
throw new IllegalArgumentException("[" + Objects.toString(name) + "] shouldn't be null."); | ||
|
||
return duration.toMillis(); | ||
} catch (final ArithmeticException e) { | ||
throw new IllegalArgumentException("[" + name + "] can't be converted to milliseconds. ", e); | ||
} | ||
} | ||
|
||
/** | ||
* Validates that milliseconds from {@code instant} can be retrieved. | ||
* @param instant Instant to check. | ||
* @param name Name of params for an error message. | ||
* @return Milliseconds from {@code instant}. | ||
*/ | ||
public static long validateMillisecondInstant(final Instant instant, final String name) { | ||
try { | ||
if (instant == null) | ||
throw new IllegalArgumentException("[" + name + "] shouldn't be null."); | ||
|
||
return instant.toEpochMilli(); | ||
} catch (final ArithmeticException e) { | ||
throw new IllegalArgumentException("[" + name + "] can't be converted to milliseconds. ", e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.