未验证 提交 0fdc73d4 编写于 作者: H Heng Du 提交者: GitHub

Merge pull request #3033 from zyh-future/zyh_asuncproducer_doc_fix

Looking at the Chinese document, I found that the subtraction operati…
...@@ -120,11 +120,13 @@ public class AsyncProducer { ...@@ -120,11 +120,13 @@ public class AsyncProducer {
producer.send(msg, new SendCallback() { producer.send(msg, new SendCallback() {
@Override @Override
public void onSuccess(SendResult sendResult) { public void onSuccess(SendResult sendResult) {
countDownLatch.countDown();
System.out.printf("%-10d OK %s %n", index, System.out.printf("%-10d OK %s %n", index,
sendResult.getMsgId()); sendResult.getMsgId());
} }
@Override @Override
public void onException(Throwable e) { public void onException(Throwable e) {
countDownLatch.countDown();
System.out.printf("%-10d Exception %s %n", index, e); System.out.printf("%-10d Exception %s %n", index, e);
e.printStackTrace(); e.printStackTrace();
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册