activemq-cpp icon indicating copy to clipboard operation
activemq-cpp copied to clipboard

Apache ActiveMQ CPP

Results 9 activemq-cpp issues
Sort by recently updated
recently updated
newest added

if don't have sleep, the program will cause cpu is 100%.

Added `#include ` for `std::auto_ptr` to fix building on Visual Studio 2017 (probably for 2019 also, but I don't have it installed, so I can't check).

Added handling thread creation failure when _beginthreadex() returns (uintptr_t )-1L. See MSDN: https://msdn.microsoft.com/en-us/library/kdzttdcb.aspx for details. Added errno and _doserrno to exception message. Reason: PlatformThread::createNewThread() is a public method. Developer who...

Incorrect documentation regarding the cms::Message::clearProperties().

In high CPU load it can happen, that Timer thread wakes up, is swapped out, and when application resumes it does not resume with timer thread, but transport thread, that...

Hi, I just read some examples in these days and here are just some tiny fixes. Thanks!

- source pointers were tested twice. - source and destination can still possibly overlap dest = src + 1 for example, thus might be safer to just use memmove regardless...

# Overview of the change This small change allows to override default behaviour of OpenSSLContextSpi in derived classes. Base OpenSSLContexSpi was partially designed to allow overriding - see virtual methods...