dubbo-rs-client
High-level client API for connecting to Dubbo RPC services.
Installation
Add this to your Cargo.toml:
[]
= "0.1"
Or use cargo add:
Overview
Provides a builder-pattern Client that wraps tonic's gRPC channel management.
Configure protocol settings, set a service URL, and dial to establish a connection.
Key Types
| Type | Description |
|---|---|
Client |
Builder-pattern client with new(), with_url(), dial() |
API
Usage
use Client;
use ProtocolConfig;
async
URL Format
Client expects URLs in the tri://host:port/service_path format:
tri://127.0.0.1:50051/com.example.GreetService
Re-exports
dubbo_rs_common as commondubbo_rs_proxy as proxy
License
Apache-2.0