You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-servicebus/src/main/java/com/microsoft/azure/servicebus/MessageHandlerOptions.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ public MessageHandlerOptions()
19
19
20
20
/**
21
21
*
22
-
* @param maxConcurrentCalls
23
-
* @param autoComplete
22
+
* @param maxConcurrentCalls maximum number of concurrent calls to the onMessage handler
23
+
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise.
24
24
* @param maxAutoRenewDuration - Maximum duration within which the client keeps renewing the message lock if the processing of the message is not completed by the handler.
Copy file name to clipboardExpand all lines: azure-servicebus/src/main/java/com/microsoft/azure/servicebus/SessionHandlerOptions.java
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ public SessionHandlerOptions()
20
20
21
21
/**
22
22
*
23
-
* @param maxConcurrentSessions
24
-
* @param autoComplete
23
+
* @param maxConcurrentSessions maximum number of concurrent sessions accepted by the session pump
24
+
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise.
25
25
* @param maxAutoRenewDuration - Maximum duration within which the client keeps renewing the session lock if the processing of the session messages or onclose action
26
26
* is not completed by the handler.
27
27
*/
@@ -32,10 +32,11 @@ public SessionHandlerOptions(int maxConcurrentSessions, boolean autoComplete, Du
32
32
33
33
/**
34
34
*
35
-
* @param maxConcurrentSessions
36
-
* @param maxConcurrentCallsPerSession
37
-
* @param autoComplete
38
-
* @param maxAutoRenewDuration
35
+
* @param maxConcurrentSessions maximum number of concurrent sessions accepted by the session pump
36
+
* @param maxConcurrentCallsPerSession maximum number of concurrent calls to the onMessage handler
37
+
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise
38
+
* @param maxAutoRenewDuration Maximum duration within which the client keeps renewing the session lock if the processing of the session messages or onclose action
0 commit comments