Skip to content

Commit d9f5aec

Browse files
committed
Add Javadoc to Channel#asyncCompletableRpc
References #215
1 parent f6192e3 commit d9f5aec

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/rabbitmq/client/Channel.java

+6
Original file line numberDiff line numberDiff line change
@@ -1363,6 +1363,12 @@ void basicNack(long deliveryTag, boolean multiple, boolean requeue)
13631363
*/
13641364
long consumerCount(String queue) throws IOException;
13651365

1366+
/**
1367+
* Asynchronously send a method over this channel.
1368+
* @param method method to transmit over this channel.
1369+
* @return a completable future that completes when the result is received
1370+
* @throws IOException Problem transmitting method.
1371+
*/
13661372
CompletableFuture<Command> asyncCompletableRpc(Method method) throws IOException;
13671373

13681374
}

0 commit comments

Comments
 (0)