Client

Global Configuration

Other custom clients will inherit the global configuration if the following fields are not configured

## Client-related configuration
asjard:
  clients:
    ## Client load balancing. If absent or empty, defaults to localityRoundRobin
    # loadbalance: "localityRoundRobin"
    ## Custom client interceptor configuration
    ## Same as servers.interceptors configuration
    # interceptors: ""
    ## Built-in client interceptors of the framework
    # builtInInterceptors: errLog,slowLog,rest2RpcContext,cycleChainInterceptor,circuitBreaker
    ## Or can be configured as a YAML list
    # builtInInterceptors:
    #   - rest2RpcContext
    #   - cycleChainInterceptor
    #   - circuitBreaker
    ## Same as servers.certFile configuration
    # certFile: ""
    ## gRPC client related configuration

Custom client

Implement the following methods

Last updated