Skip to content

Commit

Permalink
[Java] Fix Aeron.getSubscription(long) JavaDoc. (#1505)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-adaptive authored Sep 26, 2023
1 parent cd907aa commit 2b03173
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions aeron-client/src/main/java/io/aeron/Aeron.java
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,10 @@ public long asyncAddSubscription(final String channel, final int streamId)
*
* @param registrationId returned from
* {@link #asyncAddSubscription(String, int, AvailableImageHandler, UnavailableImageHandler)}
* or {@link #asyncAddSubscription(String, int)}
* @return a new {@link ConcurrentPublication} when available otherwise null.
* @see #asyncAddPublication(String, int)
* or {@link #asyncAddSubscription(String, int)}
* @return a new {@link Subscription} when available otherwise null.
* @see #asyncAddSubscription(String, int)
* @see #asyncAddSubscription(String, int, AvailableImageHandler, UnavailableImageHandler)
*/
public Subscription getSubscription(final long registrationId)
{
Expand Down

0 comments on commit 2b03173

Please sign in to comment.