ffrenchm wrote:
I'm trying to find the parameter to get asynchronous transaction. For example in activemq I've the parameter syncOnTransaction="false" to get this work... Do this kind of parameted exist in Qpid C++ with BDB ???
I'm not sure exactly what behaviour you are asking for. It is certainly possible to issue a commit from the client and not block waiting for the commit to complete. You do that by issuing the txCommit() command on an AsyncSession instance.
E.g. either AsyncSession session = ...; ... session.txCommit(); or Session session = ...; ... async(session).txCommit(); Is this what you are looking for? --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:[email protected]
