Home
last modified time | relevance | path

Searched refs:Client (Results 1 – 4 of 4) sorted by relevance

/spdk/go/rpc/client/
H A Dclient.go32 type Client struct { struct
38 var _ IClient = (*Client)(nil)
41 func (c *Client) Call(method string, params any) (*Response, error) { argument
77 func (c *Client) Close() error { argument
165 func CreateClientWithJsonCodec(network, address string) (*Client, error) {
174 return &Client{codec: createJsonCodec(conn), requestId: atomic.Uint64{}}, nil
182 return &Client{codec: createJsonCodec(conn), requestId: atomic.Uint64{}}, nil
/spdk/go/rpc/
H A DREADME.md10 ## Client integration with rpc.py
51 ### Client subsection
53 Client is a main component of RPC client. It is responsible for sending and receiving JSON-RPC 2.0
107 - `client`: New [Client](#client) struct.
/spdk/scripts/
H A Dsma-client.py24 class Client: class
67 client = Client(argv.address, argv.port)
/spdk/doc/
H A Djsonrpc_proxy.md29 ## Client side