1 个仓库
Mechanisms for converting complex objects into formats suitable for transfer between separate processes.
Distinct from Inter-Process Communication: Specifically addresses the serialization aspect of IPC rather than the communication management or synchronization.
Explore 1 awesome GitHub repository matching software engineering & architecture · Inter-Process Data Serialization. Refine with filters or upvote what's useful.
LiveEventBus 是一个 AndroidX 通信库,提供了一个用于应用程序组件间解耦数据传输的消息总线。它利用 LiveData 实现了一个生命周期感知的消息总线,确保事件订阅根据 Android 组件的状态自动管理,从而防止内存泄漏。 该库包含一个进程间通信桥,允许在不同进程或独立应用程序之间传输序列化数据和事件。它还具有粘性事件分发器,可在注册时保留并将最近的消息立即传递给新订阅者。 该框架涵盖内部和进程间消息路由、延迟消息调度和数据序列化。它还提供用于消息总线状态检查的实用程序,以监控活跃的观察者和已注册的接收者。
Provides a system for converting complex objects into transferable formats for inter-process communication.