Tornado
stable
  • ユーザーガイド
  • Webフレームワーク
  • HTTPサーバーとクライアント
  • 非同期ネットワーク
  • コルーチンと並行性
    • tornado.gen — ジェネレータベースのコルーチン
    • tornado.locks – 同期プリミティブ
    • tornado.queues – コルーチン用キュー
    • tornado.process — プロセス間ユーティリティ
  • 他のサービスとの統合
  • ユーティリティ
  • よく寄せられる質問
  • リリースノート
Tornado
  • コルーチンと並行性
  • GitHubで編集

コルーチンと並行性¶

  • tornado.gen — ジェネレータベースのコルーチン
    • デコレータ
      • coroutine()
      • 戻り値
    • ユーティリティ関数
      • with_timeout()
      • sleep()
      • WaitIterator
        • WaitIterator.done()
        • WaitIterator.next()
      • multi()
      • multi_future()
      • convert_yielded()
      • maybe_future()
      • is_coroutine_function()
      • moment
  • tornado.locks – 同期プリミティブ
    • Condition
      • Condition
        • Condition.wait()
        • Condition.notify()
        • Condition.notify_all()
    • Event
      • Event
        • Event.is_set()
        • Event.set()
        • Event.clear()
        • Event.wait()
    • Semaphore
      • Semaphore
        • Semaphore.release()
        • Semaphore.acquire()
    • BoundedSemaphore
      • BoundedSemaphore
        • BoundedSemaphore.release()
        • BoundedSemaphore.acquire()
    • Lock
      • Lock
        • Lock.acquire()
        • Lock.release()
  • tornado.queues – コルーチン用キュー
    • クラス
      • Queue
        • Queue
          • Queue.maxsize
          • Queue.qsize()
          • Queue.put()
          • Queue.put_nowait()
          • Queue.get()
          • Queue.get_nowait()
          • Queue.task_done()
          • Queue.join()
      • PriorityQueue
        • PriorityQueue
      • LifoQueue
        • LifoQueue
    • 例外
      • QueueEmpty
        • QueueEmpty
      • QueueFull
        • QueueFull
  • tornado.process — プロセス間ユーティリティ
    • CalledProcessError
    • cpu_count()
    • fork_processes()
    • task_id()
    • Subprocess
      • Subprocess.set_exit_callback()
      • Subprocess.wait_for_exit()
      • Subprocess.initialize()
      • Subprocess.uninitialize()
前の記事 次の記事

© Copyright The Tornado Authors. 改定 2a0e1d13.

Sphinxを使用して構築し、Read the Docsによって提供されるテーマSphinxを使用しています。