* @see I_Queue#embeddedObjectsToXml(OutputStream, Properties)
*/
public long embeddedObjectsToXml(OutputStream out, Properties props) throws Exception {
I_Queue queue = this.persistentQueue;
if (queue != null) {
return queue.embeddedObjectsToXml(out, null);
}
log.warning(ME+"Sorry, dumping transient entries to '" + out + "' is not implemented");
return 0;
}