forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-3129] Fix breaking changes in flink-core
- Loading branch information
Showing
10 changed files
with
89 additions
and
9 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* 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.flink.types; | ||
|
||
import org.apache.flink.annotation.PublicEvolving; | ||
|
||
/** | ||
* This interface has to be implemented by all data types that act as key. Keys are used to establish | ||
* relationships between values. A key must always be {@link java.lang.Comparable} to other keys of | ||
* the same type. In addition, keys must implement a correct {@link java.lang.Object#hashCode()} method | ||
* and {@link java.lang.Object#equals(Object)} method to ensure that grouping on keys works properly. | ||
* <p> | ||
* This interface extends {@link org.apache.flink.types.Value} and requires to implement | ||
* the serialization of its value. | ||
* | ||
* @see org.apache.flink.types.Value | ||
* @see org.apache.flink.core.io.IOReadableWritable | ||
* @see java.lang.Comparable | ||
* | ||
* @deprecated The Key type is a relict of a deprecated and removed API and will be removed | ||
* in future (2.0) versions as well. | ||
*/ | ||
@Deprecated | ||
@PublicEvolving | ||
public interface Key<T> extends Value, Comparable<T> { | ||
|
||
/** | ||
* All keys must override the hash-code function to generate proper deterministic hash codes, | ||
* based on their contents. | ||
* | ||
* @return The hash code of the key | ||
*/ | ||
public int hashCode(); | ||
|
||
/** | ||
* Compares the object on equality with another object. | ||
* | ||
* @param other The other object to compare against. | ||
* | ||
* @return True, iff this object is identical to the other object, false otherwise. | ||
*/ | ||
public boolean equals(Object other); | ||
} |
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