本文整理匯總了Python中tornado.iostream.StreamBufferFullError方法的典型用法代碼示例。如果您正苦於以下問題:Python iostream.StreamBufferFullError方法的具體用法?Python iostream.StreamBufferFullError怎麽用?Python iostream.StreamBufferFullError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tornado.iostream
的用法示例。
在下文中一共展示了iostream.StreamBufferFullError方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: io_exception_context
# 需要導入模塊: from tornado import iostream [as 別名]
# 或者: from tornado.iostream import StreamBufferFullError [as 別名]
def io_exception_context(self):
try:
yield
except (socket.error, IOError) as e:
raise TTransportException(
type=TTransportException.END_OF_FILE,
message=str(e))
except iostream.StreamBufferFullError as e:
raise TTransportException(
type=TTransportException.UNKNOWN,
message=str(e))
示例2: io_exception_context
# 需要導入模塊: from tornado import iostream [as 別名]
# 或者: from tornado.iostream import StreamBufferFullError [as 別名]
def io_exception_context(self):
try:
yield
except (socket.error, OSError, IOError) as e:
raise TTransportException(
type=TTransportException.END_OF_FILE,
message=str(e))
except iostream.StreamBufferFullError as e:
raise TTransportException(
type=TTransportException.UNKNOWN,
message=str(e))
except gen.TimeoutError as e:
raise TTransportException(
type=TTransportException.TIMED_OUT,
message=str(e))