Synchronize between processes?
I have an Android program which has a RemoteService (different process) and the Application (with the UI). Now if I have a synchronize
function used by both these components, will they be synchronized? Despite of the fact开发者_Go百科 that both are in different processes?
No - synchronize will not work across processes.
精彩评论