What are the IPC mechanisms available in the Android OS?
Will any one please tell me what are all the IPC mechanisms that are present in开发者_JAVA百科 Android.
To my knowledge are:
- Intents
- Binders
IPC is inter-process communication. It describes the mechanisms used by different types of android components to communicate with one another.
1) Intents
are messages which components can send and receive. It is a universal mechanism of passing data between processes. With help of the intents one can start services or activities, invoke broadcast receivers and so on.
2) Bundles
are entities of data that is passed through. It is similar to the serialization of an object, but much faster on android. Bundle can be read from intent via the getExtras()
method.
3) Binders
are the entities which allow activities and services to obtain a reference to another service. It allows not simply sending messages to services but directly invoking methods on them.
There are three types of IPC mechanism in Android:
- Intents (along with Bundles)
- Binders
- ASHMEM (Anonymous Shared Memory) - The main difference between Linux shared memory and this shared memory is, in Linux other processes can't free the shared memory but here if other processes require memory this memory can be freed by Android OS.
All the answers are good and concise in this post. But I would like to light upon which IPC mechanism should we use. First of all IPC
means Inter Process communication
where two applications or processes will communicate with each other by passing some data between them. Since android is meant for embedded and small devices, we should not use serialization
for IPC
, rather we can use BINDERs
which internally uses parcels
. Parcel
is a sort of light weight serialization by using shared memory concept.
There are many differences between Binder IPC and Serialization IPC:
1. Serialization is very heavy to use in embedded devices, communication will be very slow.
2. Binders uses Parcels to make IPC very fast.
3. Binders internally uses Shared memory concept which uses less memory while sharing data between two processes.
Bottom Line: Binders
uses less memory, and quite fast as it uses parcels. Serialization
is very heavy, takes time to send and receive data, and also it takes more memory compared to binders.
Note: To pass data between activities, services, and receivers use only Bundles. Don't go for either serialization or binders. Binders are specifically used only for binder services where 2 processes will communicate.
Hope this Helps :)
As written on Android Developers page, IPC mechanisms in Android include:
- Intents (with Bundles included)
- Binders or Messengers with a Service
- BroadcastReceivers
There are three types of the IPC mechanisms:
- handler
- implementing binder
- AIDL
The tree specific inter-process communications in Android are:
- AIDL which is a two way with concurrent operation.
- Messanger aa a two way but not concurrent
- Broadcast as a one way Also, you can use sockets but it's not recommended.
Another solution that worked for me was using the Internal files:
https://developer.android.com/training/data-storage#filesInternal
Write from one process, close file, read from another.
精彩评论