Skip to content

Commit 39a5496

Browse files
committed
refactor(set): fix stale XML doc crefs in IBatchSetCommands and reorder CommandFlagsTests regions
Signed-off-by: currantw <taylor.curran@improving.com>
1 parent a4c7b70 commit 39a5496

1 file changed

Lines changed: 34 additions & 34 deletions

File tree

sources/Valkey.Glide/Pipeline/IBatchSetCommands.cs

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ internal interface IBatchSetCommands
2222
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetRemoveAsync(ValkeyKey, IEnumerable{ValkeyValue})" /></returns>
2323
IBatch SetRemove(ValkeyKey key, IEnumerable<ValkeyValue> values);
2424

25-
/// <inheritdoc cref="ISetBaseCommands.SetMembersAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
26-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetMembersAsync(ValkeyKey)" /></returns>
25+
/// <inheritdoc cref="IBaseClient.SetMembersAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
26+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetMembersAsync(ValkeyKey)" /></returns>
2727
IBatch SetMembers(ValkeyKey key);
2828

29-
/// <inheritdoc cref="ISetBaseCommands.SetLengthAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
30-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetLengthAsync(ValkeyKey)" /></returns>
29+
/// <inheritdoc cref="IBaseClient.SetCardAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
30+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetCardAsync(ValkeyKey)" /></returns>
3131
IBatch SetLength(ValkeyKey key);
3232

33-
/// <inheritdoc cref="ISetBaseCommands.SetIntersectionLengthAsync(IEnumerable{ValkeyKey}, long)" path="/*[not(self::remarks) and not(self::returns)]" />
34-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetIntersectionLengthAsync(IEnumerable{ValkeyKey}, long)" /></returns>
33+
/// <inheritdoc cref="IBaseClient.SetInterCardAsync(IEnumerable{ValkeyKey}, long)" path="/*[not(self::remarks) and not(self::returns)]" />
34+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetInterCardAsync(IEnumerable{ValkeyKey}, long)" /></returns>
3535
IBatch SetIntersectionLength(IEnumerable<ValkeyKey> keys, long limit = 0);
3636

3737
/// <inheritdoc cref="ISetBaseCommands.SetPopAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
@@ -42,60 +42,60 @@ internal interface IBatchSetCommands
4242
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetPopAsync(ValkeyKey, long)" /></returns>
4343
IBatch SetPop(ValkeyKey key, long count);
4444

45-
/// <inheritdoc cref="ISetBaseCommands.SetUnionAsync(ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
46-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetUnionAsync(ValkeyKey, ValkeyKey)" /></returns>
45+
/// <inheritdoc cref="IBaseClient.SetUnionAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
46+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetUnionAsync(IEnumerable{ValkeyKey})" /></returns>
4747
IBatch SetUnion(ValkeyKey first, ValkeyKey second);
4848

49-
/// <inheritdoc cref="ISetBaseCommands.SetUnionAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
50-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetUnionAsync(IEnumerable{ValkeyKey})" /></returns>
49+
/// <inheritdoc cref="IBaseClient.SetUnionAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
50+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetUnionAsync(IEnumerable{ValkeyKey})" /></returns>
5151
IBatch SetUnion(IEnumerable<ValkeyKey> keys);
5252

53-
/// <inheritdoc cref="ISetBaseCommands.SetIntersectAsync(ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
54-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetIntersectAsync(ValkeyKey, ValkeyKey)" /></returns>
53+
/// <inheritdoc cref="IBaseClient.SetInterAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
54+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetInterAsync(IEnumerable{ValkeyKey})" /></returns>
5555
IBatch SetIntersect(ValkeyKey first, ValkeyKey second);
5656

57-
/// <inheritdoc cref="ISetBaseCommands.SetIntersectAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
58-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetIntersectAsync(IEnumerable{ValkeyKey})" /></returns>
57+
/// <inheritdoc cref="IBaseClient.SetInterAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
58+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetInterAsync(IEnumerable{ValkeyKey})" /></returns>
5959
IBatch SetIntersect(IEnumerable<ValkeyKey> keys);
6060

61-
/// <inheritdoc cref="ISetBaseCommands.SetDifferenceAsync(ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
62-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetDifferenceAsync(ValkeyKey, ValkeyKey)" /></returns>
61+
/// <inheritdoc cref="IBaseClient.SetDiffAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
62+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetDiffAsync(IEnumerable{ValkeyKey})" /></returns>
6363
IBatch SetDifference(ValkeyKey first, ValkeyKey second);
6464

65-
/// <inheritdoc cref="ISetBaseCommands.SetDifferenceAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
66-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetDifferenceAsync(IEnumerable{ValkeyKey})" /></returns>
65+
/// <inheritdoc cref="IBaseClient.SetDiffAsync(IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
66+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetDiffAsync(IEnumerable{ValkeyKey})" /></returns>
6767
IBatch SetDifference(IEnumerable<ValkeyKey> keys);
6868

69-
/// <inheritdoc cref="ISetBaseCommands.SetUnionStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
70-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetUnionStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" /></returns>
69+
/// <inheritdoc cref="IBaseClient.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
70+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
7171
IBatch SetUnionStore(ValkeyKey destination, ValkeyKey first, ValkeyKey second);
7272

73-
/// <inheritdoc cref="ISetBaseCommands.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
74-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
73+
/// <inheritdoc cref="IBaseClient.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
74+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetUnionStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
7575
IBatch SetUnionStore(ValkeyKey destination, IEnumerable<ValkeyKey> keys);
7676

77-
/// <inheritdoc cref="ISetBaseCommands.SetIntersectStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
78-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetIntersectStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" /></returns>
77+
/// <inheritdoc cref="IBaseClient.SetInterStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
78+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetInterStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
7979
IBatch SetIntersectStore(ValkeyKey destination, ValkeyKey first, ValkeyKey second);
8080

81-
/// <inheritdoc cref="ISetBaseCommands.SetIntersectStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
82-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetIntersectStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
81+
/// <inheritdoc cref="IBaseClient.SetInterStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
82+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetInterStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
8383
IBatch SetIntersectStore(ValkeyKey destination, IEnumerable<ValkeyKey> keys);
8484

85-
/// <inheritdoc cref="ISetBaseCommands.SetDifferenceStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />
86-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetDifferenceStoreAsync(ValkeyKey, ValkeyKey, ValkeyKey)" /></returns>
85+
/// <inheritdoc cref="IBaseClient.SetDiffStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
86+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetDiffStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
8787
IBatch SetDifferenceStore(ValkeyKey destination, ValkeyKey first, ValkeyKey second);
8888

89-
/// <inheritdoc cref="ISetBaseCommands.SetDifferenceStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
90-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetDifferenceStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
89+
/// <inheritdoc cref="IBaseClient.SetDiffStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" path="/*[not(self::remarks) and not(self::returns)]" />
90+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetDiffStoreAsync(ValkeyKey, IEnumerable{ValkeyKey})" /></returns>
9191
IBatch SetDifferenceStore(ValkeyKey destination, IEnumerable<ValkeyKey> keys);
9292

93-
/// <inheritdoc cref="ISetBaseCommands.SetContainsAsync(ValkeyKey, ValkeyValue)" path="/*[not(self::remarks) and not(self::returns)]" />
94-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetContainsAsync(ValkeyKey, ValkeyValue)" /></returns>
93+
/// <inheritdoc cref="IBaseClient.SetIsMemberAsync(ValkeyKey, ValkeyValue)" path="/*[not(self::remarks) and not(self::returns)]" />
94+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetIsMemberAsync(ValkeyKey, ValkeyValue)" /></returns>
9595
IBatch SetContains(ValkeyKey key, ValkeyValue value);
9696

97-
/// <inheritdoc cref="ISetBaseCommands.SetContainsAsync(ValkeyKey, IEnumerable{ValkeyValue})" path="/*[not(self::remarks) and not(self::returns)]" />
98-
/// <returns>Command Response - <inheritdoc cref="ISetBaseCommands.SetContainsAsync(ValkeyKey, IEnumerable{ValkeyValue})" /></returns>
97+
/// <inheritdoc cref="IBaseClient.SetIsMemberAsync(ValkeyKey, IEnumerable{ValkeyValue})" path="/*[not(self::remarks) and not(self::returns)]" />
98+
/// <returns>Command Response - <inheritdoc cref="IBaseClient.SetIsMemberAsync(ValkeyKey, IEnumerable{ValkeyValue})" /></returns>
9999
IBatch SetContains(ValkeyKey key, IEnumerable<ValkeyValue> values);
100100

101101
/// <inheritdoc cref="ISetBaseCommands.SetRandomMemberAsync(ValkeyKey)" path="/*[not(self::remarks) and not(self::returns)]" />

0 commit comments

Comments
 (0)