Is Transport.send threadsafe? if not, does JAMES take care of it?
I want my mail server(JAMES) to handle the scenario where multiple users send mails simultaneously to a single user.Sending is done using Transport.send(). Is it thread safe?If it isn't, does JAMES take care of thread safety of its users?RegardsChaitanya
[290 byte] By [
chaitunva] at [2007-11-26 13:53:52]

# 1
Yes, Transport.send is thread-safe. Transport.send is a static methodthat creates a new Transport object, uses it to send the single message,and destroys the object.