Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m3talsmith/heartbeat
An example of a heartbeat channel over GRPC: C++ client, Go server
https://github.com/m3talsmith/heartbeat
Last synced: about 1 month ago
JSON representation
An example of a heartbeat channel over GRPC: C++ client, Go server
- Host: GitHub
- URL: https://github.com/m3talsmith/heartbeat
- Owner: m3talsmith
- Created: 2024-03-07T02:38:53.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-11T16:28:27.000Z (10 months ago)
- Last Synced: 2024-04-14T15:07:33.904Z (9 months ago)
- Language: C++
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Heartbeat
This combines a GRPC server, written in Golang, with a GRPC client, written in C++. The goal is to have a heartbeat channel from each client to the server, to know whether the client is still connecting or not from the server end.
## Development
### Built and Tested Using
- [Golang 1.22](https://go.dev)
- [Protocol Buffers 25.2](https://grpc.io/docs/protoc-installation/)
- [GNU Make 4.4.1](https://www.gnu.org/software/make/)
- [CMake 3.28.3](https://cmake.org/)
- [Git 2.43.2](https://git-scm.com/)### Build
The dependencies can be installed using: `make deps`
To build the project run: `make build`
All binaries will be built then into the `target` directory.To install run: `make install`
To uninstall run: `make uninstall`
There are a list of other tasks in the `Makefile` for those interested in the details.