vote up 0 vote down star

If I use SMTPTransport (http://java.sun.com/products/javamail/javadocs/com/sun/mail/smtp/SMTPTransport.html) as private static object for class that implements MessageDrivenBean and MessageListener, will it be thread safe or are there some possible error situations?

flag

what is SMTPTransport? – skaffman Oct 20 at 8:59
com.sun.mail.smtp.SMTPTransport – newbie Oct 20 at 9:16
java.sun.com/products/javamail/… – newbie Oct 20 at 9:17
And what is MessageDrivenBean and MessageListener (I think I have at least a dozen of the later on the classpath of my current project) – sfussenegger Oct 20 at 9:36
javax.ejb.MessageDrivenBean and javax.jms.MessageListener – newbie Oct 20 at 9:42

1 Answer

vote up 1 vote down check

It looks like SMTPTransport is a thread-safe object.
So, you should be able to use it from any thread. Though you should not be too optimistic about this. I've seen too few API which were ready to be used from different threads without problems :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.