File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public interface IQueueSpecification : IEntityInfoSpecification<IQueueInfo>
7171 IQueueSpecification OverflowStrategy ( OverFlowStrategy overflow ) ;
7272
7373 IQueueSpecification MaxLengthBytes ( ByteCapacity maxLengthBytes ) ;
74-
74+
7575 IQueueSpecification LeaderLocator ( LeaderLocatorStrategy strategy ) ;
7676
7777 // TODO: Add more tests for SingleActiveConsumer
@@ -99,8 +99,7 @@ public interface IStreamSpecification
9999 public IStreamSpecification MaxSegmentSizeBytes ( ByteCapacity maxSegmentSize ) ;
100100
101101 public IStreamSpecification InitialClusterSize ( int initialClusterSize ) ;
102-
103-
102+
104103 public IStreamSpecification FileSizePerChunk ( ByteCapacity fileSizePerChunk ) ;
105104
106105 public IQueueSpecification Queue ( ) ;
@@ -121,7 +120,7 @@ public interface IQuorumQueueSpecification
121120 IQuorumQueueSpecification DeliveryLimit ( int limit ) ;
122121
123122 IQuorumQueueSpecification QuorumInitialGroupSize ( int size ) ;
124-
123+
125124 IQuorumQueueSpecification QuorumTargetGroupSize ( int size ) ;
126125
127126 IQueueSpecification Queue ( ) ;
Original file line number Diff line number Diff line change @@ -231,7 +231,6 @@ public IQueueSpecification MaxLengthBytes(ByteCapacity maxLengthBytes)
231231 return this ;
232232 }
233233
234-
235234 public IQueueSpecification LeaderLocator ( LeaderLocatorStrategy leaderLocatorStrategy )
236235 {
237236 _queueArguments [ "x-queue-leader-locator" ] = leaderLocatorStrategy switch
@@ -243,7 +242,6 @@ public IQueueSpecification LeaderLocator(LeaderLocatorStrategy leaderLocatorStra
243242 return this ;
244243 }
245244
246-
247245 public IQueueSpecification SingleActiveConsumer ( bool singleActiveConsumer )
248246 {
249247 _queueArguments [ "x-single-active-consumer" ] = singleActiveConsumer ;
@@ -410,7 +408,6 @@ public IStreamSpecification InitialClusterSize(int initialClusterSize)
410408 return this ;
411409 }
412410
413-
414411 public IStreamSpecification FileSizePerChunk ( ByteCapacity fileSizePerChunk )
415412 {
416413 Utils . ValidatePositive ( "x-stream-file-size-per-chunk" , fileSizePerChunk ) ;
You can’t perform that action at this time.
0 commit comments