Pykka
2.0

Usage

  • Quickstart
  • Examples
  • Pykka API
    • __version__
    • Actors
    • Proxies
    • Futures
    • Registry
    • Exceptions
    • Messages
    • Logging
    • Debug helpers
  • Runtimes
  • Testing

About

  • Inspiration
  • Changes
Pykka
  • Pykka API
  • View page source

Pykka API

pykka.__version__

Pykka’s PEP 386 and PEP 396 compatible version number

  • Actors
    • Actor
      • Actor.start()
      • Actor.actor_urn
      • Actor.actor_inbox
      • Actor.actor_stopped
      • Actor.actor_ref
      • Actor.stop()
      • Actor.on_start()
      • Actor.on_stop()
      • Actor.on_failure()
      • Actor.on_receive()
    • ActorRef
      • ActorRef.actor_class
      • ActorRef.actor_urn
      • ActorRef.actor_inbox
      • ActorRef.actor_stopped
      • ActorRef.is_alive()
      • ActorRef.tell()
      • ActorRef.ask()
      • ActorRef.stop()
      • ActorRef.proxy()
  • Proxies
    • ActorProxy
      • ActorProxy.actor_ref
    • CallableProxy
      • CallableProxy.__call__()
      • CallableProxy.defer()
    • traversable()
  • Futures
    • Future
      • Future.get()
      • Future.set()
      • Future.set_exception()
      • Future.set_get_hook()
      • Future.filter()
      • Future.join()
      • Future.map()
      • Future.reduce()
    • get_all()
  • Registry
    • ActorRegistry
      • ActorRegistry.broadcast()
      • ActorRegistry.get_all()
      • ActorRegistry.get_by_class()
      • ActorRegistry.get_by_class_name()
      • ActorRegistry.get_by_urn()
      • ActorRegistry.register()
      • ActorRegistry.stop_all()
      • ActorRegistry.unregister()
  • Exceptions
    • ActorDeadError
    • Timeout
  • Messages
    • ProxyCall
      • ProxyCall.args
      • ProxyCall.attr_path
      • ProxyCall.kwargs
    • ProxyGetAttr
      • ProxyGetAttr.attr_path
    • ProxySetAttr
      • ProxySetAttr.attr_path
      • ProxySetAttr.value
  • Logging
    • Log levels
    • Log handlers
    • Recommended setup
  • Debug helpers
    • log_thread_tracebacks()
    • Deadlock debugging
Previous Next

© Copyright 2010-2024, Stein Magnus Jodal and contributors.

Built with Sphinx using a theme provided by Read the Docs.