Skip to content

Commit

Permalink
Added min filters to max concurrent messages
Browse files Browse the repository at this point in the history
  • Loading branch information
amitjoy committed May 7, 2024
1 parent a2d02ef commit 47c1d99
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ public final class MessageClientProvider {
@AttributeDefinition(name = "Last Will Delay Interval", min = "0")
long lastWillDelayInterval() default 30L;

@AttributeDefinition(name = "Maximum Concurrent Messages to be received")
@AttributeDefinition(name = "Maximum Concurrent Messages to be received", min = "1")
int receiveMaximum() default 10;

@AttributeDefinition(name = "Maximum Concurrent Messages to be sent")
@AttributeDefinition(name = "Maximum Concurrent Messages to be sent", min = "0")
int sendMaximum() default 10;

@AttributeDefinition(name = "Maximum Packet Size for receiving")
Expand Down

0 comments on commit 47c1d99

Please sign in to comment.