https://github.com/stiffstream/sobjectizer_fixed_stack_example
This is an implementation of fixed_stack example from C++ Actor Framework distributive, but using SObjectizer-5.7 and so5extra.
https://github.com/stiffstream/sobjectizer_fixed_stack_example
actors cplusplus cpp17 message-passing sobjectizer
Last synced: 3 months ago
JSON representation
This is an implementation of fixed_stack example from C++ Actor Framework distributive, but using SObjectizer-5.7 and so5extra.
- Host: GitHub
- URL: https://github.com/stiffstream/sobjectizer_fixed_stack_example
- Owner: Stiffstream
- Created: 2020-03-03T08:14:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-03T08:54:55.000Z (over 5 years ago)
- Last Synced: 2024-12-28T11:28:15.028Z (5 months ago)
- Topics: actors, cplusplus, cpp17, message-passing, sobjectizer
- Language: C++
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What is it?
This is an implementation of fixed_stack example from C++ Actor Framework distributive, but using SObjectizer-5.7 and so5extra.
# How to get and try?
To compile the example Ruby, RubyGems and Rake are required. Usually they are available from the single package, but sometimes it can be necessary to install them manually. For example:
```sh
sudo apt install ruby
sudo apt install rake
```
After installing of Ruby (+RubyGems+Rake) it is necessary to install Mxx_ru:
```sh
gem install Mxx_ru
```
Or, if root privilegies are required:
```sh
sudo gem install Mxx_ru
```Now you can get the source code from GitHub and compile it:
```sh
# Get the sources.
git clone https://github.com/Stiffstream/sobjectizer_fixed_stack_example
cd sobjectizer_fixed_stack_example
# Get the dependencies.
mxxruexternals
# Compile.
cd dev
ruby build.rb
```
As result of the compilation there will be `fixed_stack_app` executable in `target/release` folder.