@@ -23,12 +23,21 @@ public RedisValue StreamAdd(RedisKey key, NameValueEntry[] streamPairs, RedisVal
2323 public RedisValue StreamAdd ( RedisKey key , NameValueEntry [ ] streamPairs , RedisValue ? messageId = null , long ? maxLength = null , bool useApproximateMaxLength = false , long ? limit = null , StreamTrimMode trimMode = StreamTrimMode . KeepReferences , CommandFlags flags = CommandFlags . None )
2424 => GetDatabase ( ) . StreamAdd ( key , streamPairs , messageId , maxLength , useApproximateMaxLength , limit , trimMode , flags ) ;
2525
26+ public RedisValue StreamAdd ( RedisKey key , RedisValue streamField , RedisValue streamValue , StreamIdempotentId idempotentId , long ? maxLength = null , bool useApproximateMaxLength = false , long ? limit = null , StreamTrimMode trimMode = StreamTrimMode . KeepReferences , CommandFlags flags = CommandFlags . None )
27+ => GetDatabase ( ) . StreamAdd ( key , streamField , streamValue , idempotentId , maxLength , useApproximateMaxLength , limit , trimMode , flags ) ;
28+
29+ public RedisValue StreamAdd ( RedisKey key , NameValueEntry [ ] streamPairs , StreamIdempotentId idempotentId , long ? maxLength = null , bool useApproximateMaxLength = false , long ? limit = null , StreamTrimMode trimMode = StreamTrimMode . KeepReferences , CommandFlags flags = CommandFlags . None )
30+ => GetDatabase ( ) . StreamAdd ( key , streamPairs , idempotentId , maxLength , useApproximateMaxLength , limit , trimMode , flags ) ;
31+
2632 public StreamEntry [ ] StreamClaim ( RedisKey key , RedisValue consumerGroup , RedisValue claimingConsumer , long minIdleTimeInMs , RedisValue [ ] messageIds , CommandFlags flags = CommandFlags . None )
2733 => GetDatabase ( ) . StreamClaim ( key , consumerGroup , claimingConsumer , minIdleTimeInMs , messageIds , flags ) ;
2834
2935 public RedisValue [ ] StreamClaimIdsOnly ( RedisKey key , RedisValue consumerGroup , RedisValue claimingConsumer , long minIdleTimeInMs , RedisValue [ ] messageIds , CommandFlags flags = CommandFlags . None )
3036 => GetDatabase ( ) . StreamClaimIdsOnly ( key , consumerGroup , claimingConsumer , minIdleTimeInMs , messageIds , flags ) ;
3137
38+ public void StreamConfigure ( RedisKey key , StreamConfiguration configuration , CommandFlags flags = CommandFlags . None )
39+ => GetDatabase ( ) . StreamConfigure ( key , configuration , flags ) ;
40+
3241 public bool StreamConsumerGroupSetPosition ( RedisKey key , RedisValue groupName , RedisValue position , CommandFlags flags = CommandFlags . None )
3342 => GetDatabase ( ) . StreamConsumerGroupSetPosition ( key , groupName , position , flags ) ;
3443
0 commit comments