Lines Matching refs:RPC
10 easier to work with if you are using the RPC via HDLC over WebSerial.
16 Creating an RPC Client
18 The RPC client is instantiated from a list of channels and a set of protos.
44 Finding an RPC Method
46 Once the client is instantiated with the correct proto library, the target RPC
56 The four possible RPC stubs are ``UnaryMethodStub``,
62 Invoke an RPC with callbacks
73 All RPC methods can be invoked with a set of callbacks that are triggered when
74 either a response is received, the RPC is completed, or an error occurs. The
75 example below demonstrates registering these callbacks on a Bidirectional RPC.
76 Other RPC types can be invoked in a similar fashion. The request parameter may
77 differ slightly between RPC types.
81 a single RPC call to avoid unbounded memory usage in long-running streams. Once
105 Open an RPC: ignore initial errors
108 Open allows you to start and register an RPC without crashing on errors. This
109 is useful for starting an RPC before the server is ready. For instance, starting
110 a logging RPC while the device is booting.
124 If no timeout is specified, the RPC will wait indefinitely.
126 Unary RPC
138 Server Streaming RPC
157 Client Streaming RPC
179 Bidirectional Stream RPC