mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
75 lines
1.7 KiB
Rust
75 lines
1.7 KiB
Rust
use bytes::Bytes;
|
|
|
|
pub mod dart;
|
|
pub mod entities;
|
|
mod protobuf;
|
|
|
|
use crate::{dart::DartStreamSender, entities::SubscribeObject};
|
|
use lib_dispatch::prelude::ToBytes;
|
|
|
|
pub struct DartNotifyBuilder {
|
|
id: String,
|
|
payload: Option<Bytes>,
|
|
error: Option<Bytes>,
|
|
source: String,
|
|
ty: i32,
|
|
}
|
|
|
|
impl DartNotifyBuilder {
|
|
pub fn new<T: Into<i32>>(id: &str, ty: T, source: &str) -> Self {
|
|
Self {
|
|
id: id.to_owned(),
|
|
ty: ty.into(),
|
|
payload: None,
|
|
error: None,
|
|
source: source.to_owned(),
|
|
}
|
|
}
|
|
|
|
pub fn payload<T>(mut self, payload: T) -> Self
|
|
where
|
|
T: ToBytes,
|
|
{
|
|
match payload.into_bytes() {
|
|
Ok(bytes) => self.payload = Some(bytes),
|
|
Err(e) => {
|
|
log::error!("Set observable payload failed: {:?}", e);
|
|
}
|
|
}
|
|
|
|
self
|
|
}
|
|
|
|
pub fn error<T>(mut self, error: T) -> Self
|
|
where
|
|
T: ToBytes,
|
|
{
|
|
match error.into_bytes() {
|
|
Ok(bytes) => self.error = Some(bytes),
|
|
Err(e) => {
|
|
log::error!("Set observable error failed: {:?}", e);
|
|
}
|
|
}
|
|
self
|
|
}
|
|
|
|
pub fn send(self) {
|
|
let payload = self.payload.map(|bytes| bytes.to_vec());
|
|
|
|
let error = self.error.map(|bytes| bytes.to_vec());
|
|
|
|
let subject = SubscribeObject {
|
|
source: self.source,
|
|
ty: self.ty,
|
|
id: self.id,
|
|
payload,
|
|
error,
|
|
};
|
|
|
|
match DartStreamSender::post(subject) {
|
|
Ok(_) => {}
|
|
Err(error) => log::error!("Send observable subject failed: {}", error),
|
|
}
|
|
}
|
|
}
|