Пример #1
0
 def __del__(self):
     # TODO(https://github.com/grpc/grpc/issues/12531): Several releases
     # after 1.12 (1.16 or thereabouts?) add a "self._channel.close" call
     # here (or more likely, call self._close() here). We don't do this today
     # because many valid use cases today allow the channel to be deleted
     # immediately after stubs are created. After a sufficient period of time
     # has passed for all users to be trusted to hang out to their channels
     # for as long as they are in use and to close them after using them,
     # then deletion of this grpc._channel.Channel instance can be made to
     # effect closure of the underlying cygrpc.Channel instance.
     cygrpc.fork_unregister_channel(self)
     _moot(self._connectivity_state)
Пример #2
0
 def __del__(self):
     # TODO(https://github.com/grpc/grpc/issues/12531): Several releases
     # after 1.12 (1.16 or thereabouts?) add a "self._channel.close" call
     # here (or more likely, call self._close() here). We don't do this today
     # because many valid use cases today allow the channel to be deleted
     # immediately after stubs are created. After a sufficient period of time
     # has passed for all users to be trusted to hang out to their channels
     # for as long as they are in use and to close them after using them,
     # then deletion of this grpc._channel.Channel instance can be made to
     # effect closure of the underlying cygrpc.Channel instance.
     if cygrpc is not None:  # Globals may have already been collected.
         cygrpc.fork_unregister_channel(self)
     # This prevent the failed-at-initializing object removal from failing.
     # Though the __init__ failed, the removal will still trigger __del__.
     if _moot is not None and hasattr(self, "_connectivity_state"):
         _moot(self._connectivity_state)
Пример #3
0
 def __del__(self):
     # TODO(https://github.com/grpc/grpc/issues/12531): Several releases
     # after 1.12 (1.16 or thereabouts?) add a "self._channel.close" call
     # here (or more likely, call self._close() here). We don't do this today
     # because many valid use cases today allow the channel to be deleted
     # immediately after stubs are created. After a sufficient period of time
     # has passed for all users to be trusted to hang out to their channels
     # for as long as they are in use and to close them after using them,
     # then deletion of this grpc._channel.Channel instance can be made to
     # effect closure of the underlying cygrpc.Channel instance.
     if cygrpc is not None:  # Globals may have already been collected.
         cygrpc.fork_unregister_channel(self)
     # This prevent the failed-at-initializing object removal from failing.
     # Though the __init__ failed, the removal will still trigger __del__.
     if _moot is not None and hasattr(self, '_connectivity_state'):
         _moot(self._connectivity_state)
Пример #4
0
 def _close(self):
     self._unsubscribe_all()
     self._channel.close(cygrpc.StatusCode.cancelled, 'Channel closed!')
     cygrpc.fork_unregister_channel(self)
Пример #5
0
 def _close(self):
     self._channel.close(cygrpc.StatusCode.cancelled, 'Channel closed!')
     cygrpc.fork_unregister_channel(self)
     _moot(self._connectivity_state)
Пример #6
0
 def _close(self):
     self._channel.close(cygrpc.StatusCode.cancelled, 'Channel closed!')
     cygrpc.fork_unregister_channel(self)
     _moot(self._connectivity_state)