本文整理汇总了C++中ActiveMQMapMessage::setReadOnlyBody方法的典型用法代码示例。如果您正苦于以下问题:C++ ActiveMQMapMessage::setReadOnlyBody方法的具体用法?C++ ActiveMQMapMessage::setReadOnlyBody怎么用?C++ ActiveMQMapMessage::setReadOnlyBody使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ActiveMQMapMessage
的用法示例。
在下文中一共展示了ActiveMQMapMessage::setReadOnlyBody方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: testWriteOnlyBody
void ActiveMQMapMessageTest::testWriteOnlyBody() {
ActiveMQMapMessage msg;
std::vector<unsigned char> buffer1(1);
std::vector<unsigned char> buffer2(2);
msg.setReadOnlyBody( false );
msg.setBoolean( "boolean", true );
msg.setByte( "byte", (unsigned char)1 );
msg.setBytes( "bytes", buffer1 );
msg.setBytes( "bytes2", buffer2 );
msg.setChar( "char", 'a' );
msg.setDouble( "double", 1.5 );
msg.setFloat( "float", 1.5f );
msg.setInt( "int", 1 );
msg.setLong( "long", 1 );
msg.setShort( "short", (short)1 );
msg.setString( "string", "string" );
msg.setReadOnlyBody( true );
msg.getBoolean( "boolean" );
msg.getByte( "byte" );
msg.getBytes( "bytes" );
msg.getChar( "char" );
msg.getDouble( "double" );
msg.getFloat( "float" );
msg.getInt( "int" );
msg.getLong( "long" );
msg.getShort( "short" );
msg.getString( "string" );
}
示例2: testGetBoolean
void ActiveMQMapMessageTest::testGetBoolean() {
ActiveMQMapMessage msg;
msg.setBoolean( name, true );
msg.setReadOnlyBody( true );
CPPUNIT_ASSERT( msg.getBoolean( name ) );
msg.clearBody();
msg.setString( name, "true" );
ActiveMQMapMessage msg2;
msg2.copyDataStructure( &msg );
CPPUNIT_ASSERT( msg2.getBoolean( name ) );
}
示例3: testReadOnlyBody
void ActiveMQMapMessageTest::testReadOnlyBody() {
ActiveMQMapMessage msg;
std::vector<unsigned char> buffer(2);
msg.setBoolean( "boolean", true );
msg.setByte( "byte", (unsigned char)1 );
msg.setBytes( "bytes", buffer );
msg.setChar( "char", 'a' );
msg.setDouble( "double", 1.5 );
msg.setFloat( "float", 1.5f );
msg.setInt( "int", 1 );
msg.setLong( "long", 1 );
msg.setShort( "short", (short)1 );
msg.setString( "string", "string" );
msg.setReadOnlyBody( true );
try {
msg.getBoolean( "boolean" );
msg.getByte( "byte" );
msg.getBytes( "bytes" );
msg.getChar( "char" );
msg.getDouble( "double" );
msg.getFloat( "float" );
msg.getInt( "int" );
msg.getLong( "long" );
msg.getShort( "short" );
msg.getString( "string" );
} catch( MessageNotReadableException& mnre ) {
CPPUNIT_FAIL( "should be readable" );
}
try {
msg.setBoolean( "boolean", true );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setByte( "byte", (unsigned char)1 );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setBytes( "bytes", buffer );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setChar( "char", 'a' );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setDouble( "double", 1.5 );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setFloat( "float", 1.5f );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setInt( "int", 1 );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setLong( "long", 1 );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setShort( "short", (short)1 );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
try {
msg.setString( "string", "string" );
CPPUNIT_FAIL( "should throw exception" );
} catch( MessageNotWriteableException& mnwe ) {
}
}