krpc-core 0.2.0

RPC framework for service registration and discovery through API exposure, compatible with Dubbo3 protocol, intertunable with Java projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod client;
mod filter;
pub mod protocol;
pub mod server;
pub mod support;
pub mod handler;
pub mod register;
pub mod route;

pub type Error = krpc_common::Error;
pub type Result<T> = krpc_common::Result<T>;
pub type KrpcFuture<T> = krpc_common::KrpcFuture<T>;