Change up ordering

pull/21954/head
Richard Belleville 5 years ago
parent 6e7f9f2ebe
commit e7e41e7610
  1. 12
      src/python/grpcio/grpc/_simple_stubs.py

@ -22,6 +22,12 @@ from typing import Any, AnyStr, Callable, Iterator, OrderedDict, Optional, Seque
import grpc
RequestType = TypeVar('RequestType')
ResponseType = TypeVar('ResponseType')
OptionsType = Sequence[Tuple[str, str]]
CacheKey = Tuple[str, OptionsType, Optional[grpc.ChannelCredentials], Optional[grpc.Compression]]
_LOGGER = logging.getLogger(__name__)
_EVICTION_PERIOD_KEY = "GRPC_PYTHON_MANAGED_CHANNEL_EVICTION_SECONDS"
@ -61,9 +67,6 @@ def _create_channel(target: str, options: Sequence[Tuple[str, str]],
options=options,
compression=compression)
OptionsType = Sequence[Tuple[str, str]]
CacheKey = Tuple[str, OptionsType, Optional[grpc.ChannelCredentials], Optional[grpc.Compression]]
class ChannelCache:
# NOTE(rbellevi): Untyped due to reference cycle.
_singleton = None
@ -148,9 +151,6 @@ class ChannelCache:
return len(self._mapping)
RequestType = TypeVar('RequestType')
ResponseType = TypeVar('ResponseType')
# TODO(rbellevi): Consider a credential type that has the
# following functionality matrix:
#

Loading…
Cancel
Save