Blocked event loop blog post (#1775)

* feat: snippets

* feat: first couple paragraphs

* feat: flesh out hatchet examples

* fix: one more

* feat: log view

* fix: cleanup

* feat: another section

* fix: fmt

* feat: debugging section

* fix: proofread

* fix: lint

* chore: gen

* fix: copilot

* fix: copilot

* feat: add blog post link

* fix: feedback

* chore: sdk ver

* chore: gen

* fix: ugh
This commit is contained in:
Matt Kaye
2025-05-27 14:07:34 -04:00
committed by GitHub
parent 521c5f430f
commit f9d3d508ca
36 changed files with 1609 additions and 45 deletions

View File

@@ -0,0 +1,20 @@
# > Trigger
import time
from examples.blocked_async.blocking_example_worker import (
blocking,
non_blocking_async,
non_blocking_sync,
)
non_blocking_sync.run_no_wait()
non_blocking_async.run_no_wait()
time.sleep(1)
blocking.run_no_wait()
time.sleep(1)
non_blocking_sync.run_no_wait()