本文整理汇总了Python中oauth2client.keyring_storage.Storage方法的典型用法代码示例。如果您正苦于以下问题:Python keyring_storage.Storage方法的具体用法?Python keyring_storage.Storage怎么用?Python keyring_storage.Storage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oauth2client.keyring_storage
的用法示例。
在下文中一共展示了keyring_storage.Storage方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: acquire_lock
# 需要导入模块: from oauth2client import keyring_storage [as 别名]
# 或者: from oauth2client.keyring_storage import Storage [as 别名]
def acquire_lock(self):
"""Acquires any lock necessary to access this Storage.
This lock is not reentrant."""
self._lock.acquire()
示例2: release_lock
# 需要导入模块: from oauth2client import keyring_storage [as 别名]
# 或者: from oauth2client.keyring_storage import Storage [as 别名]
def release_lock(self):
"""Release the Storage lock.
Trying to release a lock that isn't held will result in a
RuntimeError.
"""
self._lock.release()
示例3: __init__
# 需要导入模块: from oauth2client import keyring_storage [as 别名]
# 或者: from oauth2client.keyring_storage import Storage [as 别名]
def __init__(self, service_name, user_name):
"""Constructor.
Args:
service_name: string, The name of the service under which the
credentials are stored.
user_name: string, The name of the user to store credentials for.
"""
super(Storage, self).__init__(lock=threading.Lock())
self._service_name = service_name
self._user_name = user_name
示例4: acquire_lock
# 需要导入模块: from oauth2client import keyring_storage [as 别名]
# 或者: from oauth2client.keyring_storage import Storage [as 别名]
def acquire_lock(self):
"""Acquires any lock necessary to access this Storage.
This lock is not reentrant.
"""
self._lock.acquire()
示例5: release_lock
# 需要导入模块: from oauth2client import keyring_storage [as 别名]
# 或者: from oauth2client.keyring_storage import Storage [as 别名]
def release_lock(self):
"""Release the Storage lock.
Trying to release a lock that isn't held will result in a
RuntimeError.
"""
self._lock.release()