Searched refs:Client (Results 1 – 4 of 4) sorted by relevance
32 type Client struct { struct38 var _ IClient = (*Client)(nil)41 func (c *Client) Call(method string, params any) (*Response, error) { argument77 func (c *Client) Close() error { argument165 func CreateClientWithJsonCodec(network, address string) (*Client, error) {174 return &Client{codec: createJsonCodec(conn), requestId: atomic.Uint64{}}, nil182 return &Client{codec: createJsonCodec(conn), requestId: atomic.Uint64{}}, nil
10 ## Client integration with rpc.py51 ### Client subsection53 Client is a main component of RPC client. It is responsible for sending and receiving JSON-RPC 2.0107 - `client`: New [Client](#client) struct.
24 class Client: class67 client = Client(argv.address, argv.port)
29 ## Client side