Home | History | Annotate | Download | only in protobuf

Lines Matching full:rpc

31 """DEPRECATED:  Declares the RPC service interfaces.
33 This module declares the abstract interfaces underlying proto2 RPC
34 services. These are intended to be independent of any particular RPC
36 of implementations. Starting with version 2.3.0, RPC implementations should
38 which generate code specific to the particular RPC implementation. This way
47 """Exception raised on failed blocking RPC method call."""
53 """Abstract base interface for protocol-buffer-based RPC services.
80 * "rpc_controller" is of the correct type for the RPC implementation being
87 * If the RPC failed, the response value passed to "done" will be None.
123 settings specific to the RPC implementation and to find out about RPC-level
136 a new call. Must not be called while an RPC is in progress.
144 reasons for failure depend on the RPC implementation. Failed() must not
157 Advises the RPC system that the caller desires that the RPC call be
158 canceled. The RPC system may cancel it immediately, may wait awhile and
179 """Checks if the client cancelled the RPC.
181 If true, indicates that the client canceled the RPC, so the server may
190 Asks that the given callback be called when the RPC is canceled. The
191 callback will always be called exactly once. If the RPC completes without
192 being canceled, the callback will be called after completion. If the RPC
203 """Abstract interface for an RPC channel.