Skip to content

Commit

Permalink
DATAREDIS-1110 - Fix generic type parameter of StreamMessageListenerC…
Browse files Browse the repository at this point in the history
…ontainerOptionsBuilder.hashValueSerializer()

Original Pull Request: #515
  • Loading branch information
christian.rest authored and christophstrobl committed Mar 9, 2020
1 parent f183086 commit df720bd
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -105,6 +105,7 @@
*
* @author Mark Paluch
* @author Christoph Strobl
* @author Christian Rest
* @param <K> Stream key and Stream field type.
* @param <V> Stream value type.
* @since 2.2
Expand Down Expand Up @@ -723,7 +724,7 @@ public <HK, HV> StreamMessageListenerContainerOptionsBuilder<K, MapRecord<K, HK,
* @return {@code this} {@link StreamMessageListenerContainerOptionsBuilder}.
*/
public <HK, HV> StreamMessageListenerContainerOptionsBuilder<K, MapRecord<K, HK, HV>> hashValueSerializer(
RedisSerializer<HK> serializer) {
RedisSerializer<HV> serializer) {

Assert.notNull(serializer, "RedisSerializer must not be null");

Expand Down

0 comments on commit df720bd

Please sign in to comment.