Skip to content

Commit

Permalink
Fixing javadoc generation errors (Azure#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
yvgopal authored and jtaubensee committed May 31, 2017
1 parent 3533662 commit ddd5619
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ public interface ISessionHandler

/**
* Called just before a session is closed by the session pump
* @param session
* @return
* @param session session being closed
* @return a future that executes the action
*/
public CompletableFuture<Void> OnCloseSessionAsync(IMessageSession session);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public MessageHandlerOptions()

/**
*
* @param maxConcurrentCalls
* @param autoComplete
* @param maxConcurrentCalls maximum number of concurrent calls to the onMessage handler
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise.
* @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.
*/
public MessageHandlerOptions(int maxConcurrentCalls, boolean autoComplete, Duration maxAutoRenewDuration)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public SessionHandlerOptions()

/**
*
* @param maxConcurrentSessions
* @param autoComplete
* @param maxConcurrentSessions maximum number of concurrent sessions accepted by the session pump
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise.
* @param maxAutoRenewDuration - Maximum duration within which the client keeps renewing the session lock if the processing of the session messages or onclose action
* is not completed by the handler.
*/
Expand All @@ -32,10 +32,11 @@ public SessionHandlerOptions(int maxConcurrentSessions, boolean autoComplete, Du

/**
*
* @param maxConcurrentSessions
* @param maxConcurrentCallsPerSession
* @param autoComplete
* @param maxAutoRenewDuration
* @param maxConcurrentSessions maximum number of concurrent sessions accepted by the session pump
* @param maxConcurrentCallsPerSession maximum number of concurrent calls to the onMessage handler
* @param autoComplete true if the pump should automatically complete message after onMessageHandler action is completed. false otherwise
* @param maxAutoRenewDuration Maximum duration within which the client keeps renewing the session lock if the processing of the session messages or onclose action
* is not completed by the handler.
*/
public SessionHandlerOptions(int maxConcurrentSessions, int maxConcurrentCallsPerSession, boolean autoComplete, Duration maxAutoRenewDuration)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private ConnectionStringBuilder(
/**
* Build a connection string
* @param namespaceName Namespace name (dns suffix - ex: .servicebus.windows.net is not required)
* @param entityPath Entity path. For queue or topic, use name. For subscription use <topicName>/subscriptions/<subscriptionName>.
* @param entityPath Entity path. For queue or topic, use name. For subscription use &lt;topicName&gt;/subscriptions/&lt;subscriptionName&gt;
* @param sharedAccessKeyName Shared Access Key name
* @param sharedAccessKey Shared Access Key
*/
Expand All @@ -140,22 +140,22 @@ public ConnectionStringBuilder(
/**
* Build a connection string
* @param namespaceName Namespace name (dns suffix - ex: .servicebus.windows.net is not required)
* @param entityPath Entity path. For queue or topic, use name. For subscription use <topicName>/subscriptions/<subscriptionName>.
* @param entityPath Entity path. For queue or topic, use name. For subscription use &lt;topicName&gt;/subscriptions/&lt;subscriptionName&gt;
* @param sharedAccessSingature Shared Access Signature already generated
*/
public ConnectionStringBuilder(
final String namespaceName,
final String entityPath,
final String sharedAccessSingatureToken)
final String sharedAccessSingature)
{
this(namespaceName, entityPath, sharedAccessSingatureToken, MessagingFactory.DefaultOperationTimeout, RetryPolicy.getDefault());
this(namespaceName, entityPath, sharedAccessSingature, MessagingFactory.DefaultOperationTimeout, RetryPolicy.getDefault());
}


/**
* Build a connection string
* @param endpointAddress namespace level endpoint. This needs to be in the format of scheme://fullyQualifiedServiceBusNamespaceEndpointName
* @param entityPath Entity path. For queue or topic, use name. For subscription use <topicName>/subscriptions/<subscriptionName>.
* @param entityPath Entity path. For queue or topic, use name. For subscription use &lt;topicName&gt;/subscriptions/&lt;subscriptionName&gt;
* @param sharedAccessKeyName Shared Access Key name
* @param sharedAccessKey Shared Access Key
*/
Expand All @@ -171,7 +171,7 @@ public ConnectionStringBuilder(
/**
* Build a connection string
* @param endpointAddress namespace level endpoint. This needs to be in the format of scheme://fullyQualifiedServiceBusNamespaceEndpointName
* @param entityPath Entity path. For queue or topic, use name. For subscription use <topicName>/subscriptions/<subscriptionName>.
* @param entityPath Entity path. For queue or topic, use name. For subscription use &lt;topicName&gt;/subscriptions/&lt;subscriptionName&gt;
* @param sharedAccessSingature Shared Access Signature already generated
*/
public ConnectionStringBuilder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ private Timer()
{
}

/**
* @param runFrequency implemented only for TimeUnit granularity - Seconds
*/

// runFrequency implemented only for TimeUnit granularity - Seconds
public static ScheduledFuture<?> schedule(Runnable runnable, Duration runFrequency, TimerType timerType)
{
switch (timerType)
Expand Down

0 comments on commit ddd5619

Please sign in to comment.