Skip to content

Commit

Permalink
[Java] Javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed Dec 23, 2019
1 parent ac31abd commit 4e2709c
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ public static class Configuration

/**
* The number of services in this cluster instance.
* @see ClusteredServiceContainer.Configuration#SERVICE_ID_PROP_NAME
*/
public static final String SERVICE_COUNT_PROP_NAME = "aeron.cluster.service.count";

Expand Down Expand Up @@ -2008,6 +2009,7 @@ public int ticksPerWheel()
* @param serviceCount the number of clustered services in this cluster instance.
* @return this for a fluent API
* @see Configuration#SERVICE_COUNT_PROP_NAME
* @see ClusteredServiceContainer.Configuration#SERVICE_ID_PROP_NAME
*/
public Context serviceCount(final int serviceCount)
{
Expand All @@ -2020,6 +2022,7 @@ public Context serviceCount(final int serviceCount)
*
* @return the number of clustered services in this cluster instance.
* @see Configuration#SERVICE_COUNT_PROP_NAME
* @see ClusteredServiceContainer.Configuration#SERVICE_ID_PROP_NAME
*/
public int serviceCount()
{
Expand Down Expand Up @@ -2296,9 +2299,9 @@ public IdleStrategy idleStrategy()
}

/**
* Set the {@link ClusterClock} to be used for timestamping messages.
* Set the {@link ClusterClock} to be used for timestamping messages and timers.
*
* @param clock {@link ClusterClock} to be used for timestamping message
* @param clock {@link ClusterClock} to be used for timestamping messages and timers.
* @return this for a fluent API.
*/
public Context clusterClock(final ClusterClock clock)
Expand All @@ -2308,9 +2311,9 @@ public Context clusterClock(final ClusterClock clock)
}

/**
* Get the {@link ClusterClock} to used for timestamping message
* Get the {@link ClusterClock} to used for timestamping messages and timers.
*
* @return the {@link ClusterClock} to used for timestamping message
* @return the {@link ClusterClock} to used for timestamping messages and timers.
*/
public ClusterClock clusterClock()
{
Expand Down

0 comments on commit 4e2709c

Please sign in to comment.