14
examples/basic-setup/Cargo.toml
Normal file
14
examples/basic-setup/Cargo.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[package]
|
||||
name = "basic-setup"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
crunch = { workspace = true,default-features = false, features = ["in-memory"] }
|
||||
|
||||
tracing.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
anyhow.workspace = true
|
40
examples/basic-setup/src/main.rs
Normal file
40
examples/basic-setup/src/main.rs
Normal file
@@ -0,0 +1,40 @@
|
||||
use crunch::traits::{Deserializer, Event, EventInfo, Serializer};
|
||||
|
||||
struct MyEvent {}
|
||||
|
||||
impl Serializer for MyEvent {
|
||||
fn serialize(&self) -> Result<Vec<u8>, crunch::errors::SerializeError> {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
impl Deserializer for MyEvent {
|
||||
fn deserialize(_raw: Vec<u8>) -> Result<Self, crunch::errors::DeserializeError>
|
||||
where
|
||||
Self: Sized,
|
||||
{
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
impl Event for MyEvent {
|
||||
fn event_info() -> crunch::traits::EventInfo {
|
||||
EventInfo {
|
||||
domain: "my-domain",
|
||||
entity_type: "my-entity-type",
|
||||
event_name: "my-event-name",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> anyhow::Result<()> {
|
||||
let crunch = crunch::builder::Builder::default().build()?;
|
||||
|
||||
crunch
|
||||
.subscribe(|_item: MyEvent| async move { Ok(()) })
|
||||
.await?;
|
||||
|
||||
crunch.publish(MyEvent {}).await?;
|
||||
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user