Skip to content
Newtron Labs edited this page Mar 19, 2017 · 4 revisions

IPC EventBus

IPC EventBus is an Android library for posting events between processes. This library allows the user to send events between processes or between different applications.

Extra Features

ParcelHelper allows you to pack object instances inside of the events by writing and reading said instances.

ParcelHelper.getInstance().writeToParcel(dest, flags, object);
ParcelHelper.getInstance().createFromParcel(parcel, Object.class);

Extra Information

IPC EventBus is a stand alone library and does not depend on any other library.

Clone this wiki locally