Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rmichela committed Mar 11, 2019
1 parent bbccaab commit 2b57121
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private ClientCalls() {
}

/**
* Implements a unary → unary call using {@link Mono} -> {@link Mono}.
* Implements a unary → unary call using {@link Mono} {@link Mono}.
*/
public static <TRequest, TResponse> Mono<TResponse> oneToOne(
Mono<TRequest> monoSource,
Expand Down Expand Up @@ -60,7 +60,7 @@ public void onCompleted() {
}

/**
* Implements a unary → stream call as {@link Mono} -> {@link Flux}, where the server responds with a
* Implements a unary → stream call as {@link Mono} {@link Flux}, where the server responds with a
* stream of messages.
*/
public static <TRequest, TResponse> Flux<TResponse> oneToMany(
Expand All @@ -82,7 +82,7 @@ public static <TRequest, TResponse> Flux<TResponse> oneToMany(
}

/**
* Implements a stream → unary call as {@link Flux} -> {@link Mono}, where the client transits a stream of
* Implements a stream → unary call as {@link Flux} {@link Mono}, where the client transits a stream of
* messages.
*/
@SuppressWarnings("unchecked")
Expand All @@ -107,7 +107,7 @@ public static <TRequest, TResponse> Mono<TResponse> manyToOne(
}

/**
* Implements a bidirectional stream → stream call as {@link Flux} -> {@link Flux}, where both the client
* Implements a bidirectional stream → stream call as {@link Flux} {@link Flux}, where both the client
* and the server independently stream to each other.
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private ServerCalls() {
}

/**
* Implements a unary → unary call using {@link Mono} -> {@link Mono}.
* Implements a unary → unary call using {@link Mono} {@link Mono}.
*/
public static <TRequest, TResponse> void oneToOne(
TRequest request, StreamObserver<TResponse> responseObserver,
Expand All @@ -54,7 +54,7 @@ public static <TRequest, TResponse> void oneToOne(
}

/**
* Implements a unary → stream call as {@link Mono} -> {@link Flux}, where the server responds with a
* Implements a unary → stream call as {@link Mono} {@link Flux}, where the server responds with a
* stream of messages.
*/
public static <TRequest, TResponse> void oneToMany(
Expand All @@ -72,7 +72,7 @@ public static <TRequest, TResponse> void oneToMany(
}

/**
* Implements a stream → unary call as {@link Flux} -> {@link Mono}, where the client transits a stream of
* Implements a stream → unary call as {@link Flux} {@link Mono}, where the client transits a stream of
* messages.
*/
public static <TRequest, TResponse> StreamObserver<TRequest> manyToOne(
Expand Down Expand Up @@ -107,7 +107,7 @@ public static <TRequest, TResponse> StreamObserver<TRequest> manyToOne(
}

/**
* Implements a bidirectional stream → stream call as {@link Flux} -> {@link Flux}, where both the client
* Implements a bidirectional stream → stream call as {@link Flux} {@link Flux}, where both the client
* and the server independently stream to each other.
*/
public static <TRequest, TResponse> StreamObserver<TRequest> manyToMany(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private ClientCalls() {
}

/**
* Implements a unary → unary call using {@link Single} -> {@link Single}.
* Implements a unary → unary call using {@link Single} {@link Single}.
*/
public static <TRequest, TResponse> Single<TResponse> oneToOne(
final Single<TRequest> rxRequest,
Expand Down Expand Up @@ -77,7 +77,7 @@ public void accept(Throwable t) {
}

/**
* Implements a unary → stream call as {@link Single} -> {@link Flowable}, where the server responds with a
* Implements a unary → stream call as {@link Single} {@link Flowable}, where the server responds with a
* stream of messages.
*/
public static <TRequest, TResponse> Flowable<TResponse> oneToMany(
Expand All @@ -102,7 +102,7 @@ public Publisher<? extends TResponse> apply(TRequest request) {
}

/**
* Implements a stream → unary call as {@link Flowable} -> {@link Single}, where the client transits a stream of
* Implements a stream → unary call as {@link Flowable} {@link Single}, where the client transits a stream of
* messages.
*/
@SuppressWarnings("unchecked")
Expand Down Expand Up @@ -137,7 +137,7 @@ public void run() {
}

/**
* Implements a bidirectional stream → stream call as {@link Flowable} -> {@link Flowable}, where both the client
* Implements a bidirectional stream → stream call as {@link Flowable} {@link Flowable}, where both the client
* and the server independently stream to each other.
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private ServerCalls() {
}

/**
* Implements a unary → unary call using {@link Single} -> {@link Single}.
* Implements a unary → unary call using {@link Single} {@link Single}.
*/
public static <TRequest, TResponse> void oneToOne(
final TRequest request,
Expand Down Expand Up @@ -63,7 +63,7 @@ public void accept(Throwable throwable) {
}

/**
* Implements a unary → stream call as {@link Single} -> {@link Flowable}, where the server responds with a
* Implements a unary → stream call as {@link Single} {@link Flowable}, where the server responds with a
* stream of messages.
*/
public static <TRequest, TResponse> void oneToMany(
Expand All @@ -83,7 +83,7 @@ public static <TRequest, TResponse> void oneToMany(
}

/**
* Implements a stream → unary call as {@link Flowable} -> {@link Single}, where the client transits a stream of
* Implements a stream → unary call as {@link Flowable} {@link Single}, where the client transits a stream of
* messages.
*/
public static <TRequest, TResponse> StreamObserver<TRequest> manyToOne(
Expand Down Expand Up @@ -124,7 +124,7 @@ public void accept(Throwable throwable) {
}

/**
* Implements a bidirectional stream → stream call as {@link Flowable} -> {@link Flowable}, where both the client
* Implements a bidirectional stream → stream call as {@link Flowable} {@link Flowable}, where both the client
* and the server independently stream to each other.
*/
public static <TRequest, TResponse> StreamObserver<TRequest> manyToMany(
Expand Down

0 comments on commit 2b57121

Please sign in to comment.