Re: Wave Thread Safe

2016-06-19 Thread Waqee Khalid
Oh cool, I can spawn different threads by looking at wavelet ids then. Also, why was xmpp federation removed? On Sun, Jun 19, 2016 at 10:18 PM, Yuri Z wrote: > Hi > That's great news! > Regarding thread safety/multi threading - yeah the methods should be thread > safe, but almost all are sync a

Re: Wave Thread Safe

2016-06-19 Thread Yuri Z
Hi That's great news! Regarding thread safety/multi threading - yeah the methods should be thread safe, but almost all are sync and blocking. In general, i think it is impossible to apply deltas for the same wavelet in several threads as deltas order is important. It is possible to work on several

Wave Thread Safe

2016-06-16 Thread Waqee Khalid
Hello guys, I've been tasked to implement federation for wave using matrix protocol as my gsoc project. For this purpose, I want to know if calls to the wave server like waveletProvider.getDeltaSignerInfo() are thread safe. Can I process incoming packets on different threads concurrently? I would