4 releases
0.1.3 | Nov 13, 2020 |
---|---|
0.1.2 | Oct 29, 2020 |
0.1.1 | Oct 18, 2020 |
0.1.0 | Oct 17, 2020 |
#87 in #server-framework
32 downloads per month
Used in 2 crates
140KB
2.5K
SLoC
Rust Core Runtime for D3 -- A Framework for Server Development
The core runtime for the d3 framework. d3-core is a companion to d3-derive and d3-components. Combined, they form a framework for server development.
Usage
Add this to your Cargo.toml
:
[dependencies]
d3-derive = "0.1.3"
d3-core = "0.1.3"
Example
#[macro_use]
extern crate d3_derive;
use d3_core::machine_impl::*;
use d3_core::executor;
// A trivial instruction set
#[derive(Debug, MachineImpl)]
enum StateTable { Init, Start, Stop }
// A trivial Alice
pub struct Alice {}
// Implement the Machine trait for Alice
impl Machine<StateTable> for Alice {
fn receive(&self, cmd: StateTable) {
}
}
// Start the scheduler and executor.
executor::start_server();
// create the Machine from Alice, getting back a machine and Sender<StateTable>.
let (alice, sender) = executor::connect(Alice{});
// send a command to Alice
// Alice's receive method will be invoked, with cmd of StateTable::Init.
sender.send(StateTable::Init).expect("send failed");
// Stop the scheduler and executor.
executor::stop_server();
Dependencies
~2.3–3MB
~60K SLoC