开发者

javamail - was is the effect of store.close() on open folders?

开发者 https://www.devze.com 2023-02-04 15:08 出处:网络
I am using javamail to make IMAP connections to gmail. Everything is working going fine. I just want to prevent misusing server memory.

I am using javamail to make IMAP connections to gmail. Everything is working going fine. I just want to prevent misusing server memory.

My question is: What does happen when I close the store? [store.close();] does it close all open folders? Do you have to close all folders?

There are tremendous speed benefits if I leave a particula开发者_运维技巧r folder open.


from the Javamail API Documentation

"Close this service and terminate its connection. A close ConnectionEvent is delivered to any ConnectionListeners. Any Messaging components (Folders, Messages, etc.) belonging to this service are invalid after this service is closed. Note that the service is closed even if this method terminates abnormally by throwing a MessagingException. "

So you can leave the folder open but if you try a second time folder.open, you will have an exception, in this must use:

if(!folder.isOpen()){folder.open();}

i hope that help you

0

精彩评论

暂无评论...
验证码 换一张
取 消