DATAREDIS-1172 - Fix parameter type of hash value serializer in StreamReceiver.
Original pull request: #542.
This commit is contained in:
committed by
Mark Paluch
parent
9267f39abb
commit
b23e972b55
@@ -89,6 +89,7 @@ import org.springframework.util.Assert;
|
||||
* </pre>
|
||||
*
|
||||
* @author Mark Paluch
|
||||
* @author Eddie McDaniel
|
||||
* @param <K> Stream key and Stream field type.
|
||||
* @param <V> Stream value type.
|
||||
* @since 2.2
|
||||
@@ -397,7 +398,7 @@ public interface StreamReceiver<K, V extends Record<K, ?>> {
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public <HK, HV> StreamReceiverOptionsBuilder<K, MapRecord<K, HK, HV>> hashValueSerializer(
|
||||
SerializationPair<HK> pair) {
|
||||
SerializationPair<HV> pair) {
|
||||
|
||||
Assert.notNull(pair, "SerializationPair must not be null");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user