コード例 #1
0
ファイル: message.cpp プロジェクト: 10genReviews/mongo
 void Message::send( MessagingPort &p, const char *context ) {
     if ( empty() ) {
         return;
     }
     if ( _buf != 0 ) {
         p.send( (char*)_buf, _buf->len, context );
     }
     else {
         p.send( _data, context );
     }
 }
コード例 #2
0
ファイル: message.cpp プロジェクト: 3rf/mongo
 void Message::send( MessagingPort &p, const char *context ) {
     if ( empty() ) {
         return;
     }
     if ( _buf != 0 ) {
         p.send( _buf, MsgData::ConstView(_buf).getLen(), context );
     }
     else {
         p.send( _data, context );
     }
 }