Codevalley
Codevalley

Reputation: 4641

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 that both are in different processes?

Upvotes: 0

Views: 1217

Answers (1)

Yann Ramin
Yann Ramin

Reputation: 33177

No - synchronize will not work across processes.

Upvotes: 3

Related Questions