futurist/doc/source/features.rst

953 B

Features

  • A :py.futurist.GreenThreadPoolExecutor using eventlet green thread pools. It provides a standard executor API/interface and it also gathers execution statistics. It returns instances of :py.futurist.GreenFuture objects.
  • A :py.futurist.ProcessPoolExecutor derivative that gathers execution statistics. It returns instances of :py.futurist.Future objects.
  • A :py.futurist.SynchronousExecutor that doesn't run concurrently. It has the same executor API/interface and it also gathers execution statistics. It returns instances of :py.futurist.Future objects.
  • A :py.futurist.ThreadPoolExecutor derivative that gathers execution statistics. It returns instances of :py.futurist.Future objects.