1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
========
Examples
========
-----------------------------------------
Creating and using a synchronous executor
-----------------------------------------
.. testcode::
# NOTE: enable printing timestamp for additional data
import sys
import futurist
import eventlet
def delayed_func():
print("started")
eventlet.sleep(3)
print("done")
#print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
e = futurist.SynchronousExecutor()
fut = e.submit(delayed_func)
eventlet.sleep(1)
print("Hello")
eventlet.sleep(1)
e.shutdown()
#print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
**Expected output:**
.. testoutput::
started
done
Hello
------------------------------------------------
Creating and using a green thread-based executor
------------------------------------------------
.. testcode::
# NOTE: enable printing timestamp for additional data
import sys
import futurist
import eventlet
def delayed_func():
print("started")
eventlet.sleep(3)
print("done")
#print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
e = futurist.GreenThreadPoolExecutor()
fut = e.submit(delayed_func)
eventlet.sleep(1)
print("Hello")
eventlet.sleep(1)
e.shutdown()
#print(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
**Expected output:**
.. testoutput::
started
Hello
done
------------------------------------------
Creating and using a thread-based executor
------------------------------------------
.. testcode::
import time
import futurist
def delayed_func():
time.sleep(0.1)
return "hello"
e = futurist.ThreadPoolExecutor()
fut = e.submit(delayed_func)
print(fut.result())
e.shutdown()
**Expected output:**
.. testoutput::
hello
-------------------------------------------
Creating and using a process-based executor
-------------------------------------------
::
import time
import futurist
def delayed_func():
time.sleep(0.1)
return "hello"
e = futurist.ProcessPoolExecutor()
fut = e.submit(delayed_func)
print(fut.result())
e.shutdown()
**Expected output:**
::
hello
---------------------------------------
Running a set of functions periodically
---------------------------------------
.. testcode::
import futurist
from futurist import periodics
import time
import threading
@periodics.periodic(1)
def every_one(started_at):
print("1: %s" % (time.time() - started_at))
@periodics.periodic(2)
def every_two(started_at):
print("2: %s" % (time.time() - started_at))
@periodics.periodic(4)
def every_four(started_at):
print("4: %s" % (time.time() - started_at))
@periodics.periodic(6)
def every_six(started_at):
print("6: %s" % (time.time() - started_at))
started_at = time.time()
callables = [
# The function to run + any automatically provided positional and
# keyword arguments to provide to it everytime it is activated.
(every_one, (started_at,), {}),
(every_two, (started_at,), {}),
(every_four, (started_at,), {}),
(every_six, (started_at,), {}),
]
w = periodics.PeriodicWorker(callables)
# In this example we will run the periodic functions using a thread, it
# is also possible to just call the w.start() method directly if you do
# not mind blocking up the current program.
t = threading.Thread(target=w.start)
t.daemon = True
t.start()
# Run for 10 seconds and then stop.
while (time.time() - started_at) <= 10:
time.sleep(0.1)
w.stop()
w.wait()
t.join()
.. testoutput::
:hide:
...
-----------------------------------------------------------
Running a set of functions periodically (using an executor)
-----------------------------------------------------------
.. testcode::
import futurist
from futurist import periodics
import time
import threading
@periodics.periodic(1)
def every_one(started_at):
print("1: %s" % (time.time() - started_at))
time.sleep(0.5)
@periodics.periodic(2)
def every_two(started_at):
print("2: %s" % (time.time() - started_at))
time.sleep(1)
@periodics.periodic(4)
def every_four(started_at):
print("4: %s" % (time.time() - started_at))
time.sleep(2)
@periodics.periodic(6)
def every_six(started_at):
print("6: %s" % (time.time() - started_at))
time.sleep(3)
started_at = time.time()
callables = [
# The function to run + any automatically provided positional and
# keyword arguments to provide to it everytime it is activated.
(every_one, (started_at,), {}),
(every_two, (started_at,), {}),
(every_four, (started_at,), {}),
(every_six, (started_at,), {}),
]
# To avoid getting blocked up by slow periodic functions we can also
# provide a executor pool to make sure that slow functions only block
# up a thread (or green thread), instead of blocking other periodic
# functions that need to be scheduled to run.
executor_factory = lambda: futurist.ThreadPoolExecutor(max_workers=2)
w = periodics.PeriodicWorker(callables, executor_factory=executor_factory)
# In this example we will run the periodic functions using a thread, it
# is also possible to just call the w.start() method directly if you do
# not mind blocking up the current program.
t = threading.Thread(target=w.start)
t.daemon = True
t.start()
# Run for 10 seconds and then stop.
while (time.time() - started_at) <= 10:
time.sleep(0.1)
w.stop()
w.wait()
t.join()
.. testoutput::
:hide:
...
--------------------------------------------------------------------
Stopping periodic function to run again (using NeverAgain exception)
--------------------------------------------------------------------
.. testcode::
import futurist
from futurist import periodics
import time
import threading
@periodics.periodic(1)
def run_only_once(started_at):
print("1: %s" % (time.time() - started_at))
raise periodics.NeverAgain("No need to run again after first run !!")
@periodics.periodic(1)
def keep_running(started_at):
print("2: %s" % (time.time() - started_at))
started_at = time.time()
callables = [
# The function to run + any automatically provided positional and
# keyword arguments to provide to it everytime it is activated.
(run_only_once, (started_at,), {}),
(keep_running, (started_at,), {}),
]
w = periodics.PeriodicWorker(callables)
# In this example we will run the periodic functions using a thread, it
# is also possible to just call the w.start() method directly if you do
# not mind blocking up the current program.
t = threading.Thread(target=w.start)
t.daemon = True
t.start()
# Run for 10 seconds and then stop.
while (time.time() - started_at) <= 10:
time.sleep(0.1)
w.stop()
w.wait()
t.join()
.. testoutput::
:hide:
...
-------------------------------------------------------------------
Auto stopping the periodic worker when no more periodic work exists
-------------------------------------------------------------------
.. testcode::
import futurist
from futurist import periodics
import time
import threading
@periodics.periodic(1)
def run_only_once(started_at):
print("1: %s" % (time.time() - started_at))
raise periodics.NeverAgain("No need to run again after first run !!")
@periodics.periodic(2)
def run_for_some_time(started_at):
print("2: %s" % (time.time() - started_at))
if (time.time() - started_at) > 5:
raise periodics.NeverAgain("No need to run again !!")
started_at = time.time()
callables = [
# The function to run + any automatically provided positional and
# keyword arguments to provide to it everytime it is activated.
(run_only_once, (started_at,), {}),
(run_for_some_time, (started_at,), {}),
]
w = periodics.PeriodicWorker(callables)
# In this example we will run the periodic functions using a thread, it
# is also possible to just call the w.start() method directly if you do
# not mind blocking up the current program.
t = threading.Thread(target=w.start, kwargs={'auto_stop_when_empty': True})
t.daemon = True
t.start()
# Run for 10 seconds and then check to find out that it had
# already stooped.
while (time.time() - started_at) <= 10:
time.sleep(0.1)
print(w.pformat())
t.join()
.. testoutput::
:hide:
...
|