开发者

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

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜