rubbo 0.1.0

Rust implementation of Apache Dubbo 3. High-performance RPC framework with Triple protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod common;
mod provider;
mod consumer;

pub use rubbo_core::{Url, RpcProtocol, Invoker, RubboReference, RubboService};
pub use rubbo_core::protocol::kind::ProtocolKind as Protocol;
pub use rubbo_macro::{service, service_impl, reference};
pub use rubbo_serialization;
pub use rubbo_cluster as cluster;

pub use common::{Registry, Serialize};
pub use provider::ProviderBuilder;
pub use consumer::{ConsumerBuilder, Consumer};