72

Will any one please tell me what are all the IPC mechanisms that are present in Android.

To my knowledge are:

  1. Intents
  2. Binders
jww
  • 83,594
  • 69
  • 338
  • 732
Suman
  • 4,021
  • 7
  • 41
  • 63

6 Answers6

95

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.

NirIzr
  • 2,491
  • 21
  • 41
Vladimir Ivanov
  • 41,277
  • 17
  • 74
  • 99
  • and this `universal mechanism` is implemented by the means of ...what? (expecting something among the lines of kernel system calls, extensions to java found in dalvik, etc.) – n611x007 Apr 24 '15 at 15:18
  • 7
    Bundle could be seen as coming with Intent, and don't forget BroadcastReceiver. Here are the words from Android Official Page: "We strongly encourage you to instead use Android system functionality for IPC such as Intent, Binder or Messenger with a Service, and BroadcastReceiver". http://developer.android.com/training/articles/security-tips.html#IPC – Sam003 Jul 10 '15 at 01:13
  • 1
    Can someone please add examples? Newcomers would understand it faster if there are use cases for each IPC type. – guettli Sep 14 '15 at 09:45
  • `different types of android components` or different types of Android process? – Yousha Aleayoub Sep 10 '16 at 04:22
  • Doesn't the "binder" actually bases all mentioned mechanisms in Android? We know Android Binder Framework provides the kernel capability for IPC. – ctk2021 Feb 04 '21 at 20:48
40

There are three types of IPC mechanism in Android:

  1. Intents (along with Bundles)
  2. Binders
  3. 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.
gonzobrains
  • 7,198
  • 11
  • 73
  • 126
Suman
  • 4,021
  • 7
  • 41
  • 63
23

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 :)

Setu Kumar Basak
  • 9,449
  • 6
  • 37
  • 66
22

As written on Android Developers page, IPC mechanisms in Android include:

  • Intents (with Bundles included)
  • Binders or Messengers with a Service
  • BroadcastReceivers
lomza
  • 8,576
  • 13
  • 63
  • 82
6

There are three types of the IPC mechanisms:

  1. handler
  2. implementing binder
  3. AIDL
NeverHopeless
  • 10,503
  • 4
  • 33
  • 53
swap
  • 65
  • 1
  • 9
0

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.