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.
Add this to your Cargo.toml
:
toml
[dependencies]
d3-derive = "0.1.3"
d3-core = "0.1.3"
```rust
extern crate d3_derive;
use d3core::machineimpl::*; use d3_core::executor;
// A trivial instruction set
enum StateTable { Init, Start, Stop }
// A trivial Alice pub struct Alice {}
// Implement the Machine trait for Alice
impl Machine
// Start the scheduler and executor. executor::start_server();
// create the Machine from Alice, getting back a machine and Sender
// 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(); ```