Hi I am trying to implement some complex multi-threading process in my app (with complex objects that can be partially and parallely fetched from a server and that are populated (with some computation from the fetched data and local data) as soon as each part is received) but the lack of the java.util.concurrent.lock API is making it really difficult to do it right.
So I am wondering. Is there any plans to port this API to CN1?
Support of an efficient real multi-threading (with allowed shared memory between threads and a full control of the design) is one of the advantages of java against javascript or even dart (i.e flutter) frameworks (especially since devices are now all multi-cores). So it's a pity that it is actually quite basic in CN1 and do not include the full java.util.concurrent API.