| > I wrote the wrapper using that already, but I can't
> find anything in that doc that talks about
> overlapping calls or the general calling flow.
Calls are always serialized in the main thread, because the engine is
mono-threaded (multiple sockets are handled through select() calls,
internally), hence you do not need any synchronization.
| |