From 2cb3913f998350922630a354444101b4311ff676 Mon Sep 17 00:00:00 2001 From: Jake Farrell Date: Mon, 29 Aug 2011 18:34:41 +0000 Subject: [PATCH] THRIFT-1306: Fix stale documentation Client: cpp Patch: Diwaker Gupta Fix documentation to match API change. Also format to 80 chars. git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1162937 13f79535-47bb-0310-9956-ffa450edef68 --- lib/cpp/src/async/TAsyncChannel.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/lib/cpp/src/async/TAsyncChannel.h b/lib/cpp/src/async/TAsyncChannel.h index 1f492731..856ab311 100644 --- a/lib/cpp/src/async/TAsyncChannel.h +++ b/lib/cpp/src/async/TAsyncChannel.h @@ -43,26 +43,22 @@ class TAsyncChannel { /** * Send a message over the channel. - * - * @return true iff the cob has been or will be called, else false */ - virtual void sendMessage(const VoidCallback& cob, apache::thrift::transport::TMemoryBuffer* message) = 0; + virtual void sendMessage(const VoidCallback& cob, + apache::thrift::transport::TMemoryBuffer* message) = 0; /** * Receive a message from the channel. - * - * @return true iff the cob has been or will be called, else false */ - virtual void recvMessage(const VoidCallback& cob, apache::thrift::transport::TMemoryBuffer* message) = 0; + virtual void recvMessage(const VoidCallback& cob, + apache::thrift::transport::TMemoryBuffer* message) = 0; /** * Send a message over the channel and receive a response. - * - * @return true iff the cob has been or will be called, else false */ virtual void sendAndRecvMessage(const VoidCallback& cob, - apache::thrift::transport::TMemoryBuffer* sendBuf, - apache::thrift::transport::TMemoryBuffer* recvBuf); + apache::thrift::transport::TMemoryBuffer* sendBuf, + apache::thrift::transport::TMemoryBuffer* recvBuf); }; }}} // apache::thrift::async -- 2.17.1