Vladimir, in general as for all stuff that stores data in db you can run into conflicts if you update same data at the same time. Although session should synchronize access on process instance level so if multiple threads will operate on same session and same process instance that should not lead to a conflict.
HTH