Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

virtual Int64 Impala::Util::IOBufferChannel::Puts ( const char *  buf  )  [inline, virtual]

Reimplemented from Impala::Util::IOBuffer.

Definition at line 223 of file IOBufferChannel.h.

References Write().

00224     {
00225         Int64 len = strlen(buf) + 1;
00226         char* writeBuf = new char[len];
00227         memcpy(writeBuf, buf, len);
00228         writeBuf[len-1] = '\n';
00229         Write(writeBuf, len);
00230         delete writeBuf;
00231         return 1;
00232     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:24:16 2011 for ImpalaSrc by  doxygen 1.5.1