You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am happy with using this library and the PDF generation has been very good, however, I always get this message:
QThreadStorage: Thread 0x7fbdb0cf0e10 exited after QThreadStorage 8 destroyed
My code implementation is fairly simple:
String html = <load HTML here>;
final boolean success = HtmlToPdf.create()
.object(HtmlToPdfObject.forHtml(html))
.convert({ path })
Through a little testing, it seems that this message is displayed after the main method finishes. What I am wondering is, has anyone gotten this behavior before, and is it dangerous if this happens when running a system that uses multiple threads (i.e. if I convert html on one thread, will that conversion and subsequent QThread Storage destruction impact the other threads in the system)?
Thanks for the help!
The text was updated successfully, but these errors were encountered:
Hello, I am happy with using this library and the PDF generation has been very good, however, I always get this message:
QThreadStorage: Thread 0x7fbdb0cf0e10 exited after QThreadStorage 8 destroyed
My code implementation is fairly simple:
Through a little testing, it seems that this message is displayed after the main method finishes. What I am wondering is, has anyone gotten this behavior before, and is it dangerous if this happens when running a system that uses multiple threads (i.e. if I convert html on one thread, will that conversion and subsequent QThread Storage destruction impact the other threads in the system)?
Thanks for the help!
The text was updated successfully, but these errors were encountered: