Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 particular folder open.

like image 631
Seeker Avatar asked Jan 14 '11 20:01

Seeker


1 Answers

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

like image 92
Simon Mardiné Avatar answered Nov 08 '22 14:11

Simon Mardiné