# msgbus **Repository Path**: ldlib/msgbus ## Basic Information - **Project Name**: msgbus - **Description**: A type-safety message bus to implement threads' communication. - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-02-17 - **Last Updated**: 2024-08-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ld/msgbus A light wight, type safe, flexible parameters, message bus. # Quick Start To use **msgbus**, you should follow these steps: 1. define your message body in your header file, such as `msg_def.h` 2. include your message body header file, such as`msg_def.h`, before "msg_bus.hpp" 3. register message handler 4. push message with right format of your message body 5. call spin_once in your loop.