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

template<class NativeType>
void Impala::Util::IOBufferChannel::DoNativeTypeWrite ( NativeType  val  )  [inline, private]

Reimplemented from Impala::Util::IOBuffer.

Definition at line 334 of file IOBufferChannel.h.

References Write().

Referenced by NativeTypeWrite().

00335     {
00336         String fs = NativeTypeFormat<NativeType>(0) + " ";
00337         char buf[1024];
00338         sprintf(buf, fs.c_str(), val);
00339         Int64 i = 0;
00340         while (buf[i] != ' ')
00341             i++;
00342         Write(buf, i+1);
00343     }

Here is the call graph for this function:


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