grpc.framework.core package¶
Submodules¶
grpc.framework.core.implementations module¶
Entry points into the ticket-exchange-based base layer implementation.
-
grpc.framework.core.implementations.
invocation_end_link
()[source]¶ Creates a base.End-links.Link suitable for operation invocation.
Returns: An object that is both a base.End and a links.Link, that supports operation invocation, and that translates operation invocation into ticket exchange.
-
grpc.framework.core.implementations.
service_end_link
(servicer, default_timeout, maximum_timeout)[source]¶ Creates a base.End-links.Link suitable for operation service.
Parameters: - servicer – A base.Servicer for servicing operations.
- default_timeout – A length of time in seconds to be used as the default time alloted for a single operation.
- maximum_timeout – A length of time in seconds to be used as the maximum time alloted for a single operation.
Returns: An object that is both a base.End and a links.Link and that services operations that arrive at it through ticket exchange.