Created
May 5, 2022 16:54
-
-
Save Zsailer/72be157665f918f34d24ed70ba045f41 to your computer and use it in GitHub Desktop.
Example of async tasks with callback queue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from jupyter_server.extension.handler import ExtensionHandlerMixin | |
from jupyter_server.base.handlers import APIHandler | |
import tornado | |
import asyncio | |
async def doing_something(): | |
for i in range(100): | |
await asyncio.sleep(1) | |
class RouteHandler(ExtensionHandlerMixin, APIHandler): | |
# The following decorator should be present on all verb methods (head, get, post, | |
# patch, put, delete, options) to ensure only authorized user can request the | |
# Jupyter server | |
@property | |
def mytrait(self): | |
return self.settings.get("mytrait") | |
@tornado.web.authenticated | |
async def get(self): | |
task = asyncio.create_task(doing_something()) | |
self.settings["task"] = task | |
self.finish(json.dumps({ | |
"data": f"This is /my_server_extension/get_example endpoint with the following trait: {self.mytrait}!" | |
})) | |
class QueueHandler(): | |
async def get(self): | |
task = self.settings["task"] | |
await task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment