jinterface

Erlang JInterface - is OtpMBox thread-safe?

In my Java program, I create a OtpNode and a "named" OtpMBox. Whenever a message is received via this mbox, some time-consuming operation needs to be performed after which a reply message is sent back. Since this operation is time-consuming, subsequent messages sent to the mbox won't be processed immediately. So I want to use Java thre...

Jinterface OtpNode initialization -name or -sname flag

When creating an OtpNode instance what kind of node is this? Is it like an erl -sname xxx or like an elr -name xxx ? ...