## Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending#"""Support for running operations on JVM server threads, so that they can be given work from python. Initially, thereare two executors, "serial" and "concurrent". Any task that will take an exclusive UGP lock should use the serialexecutor, otherwise the concurrent executor should be used. In the future there may be a "fast" executor, for usewhen there is no chance of using either lock."""fromtypingimportCallable,Dict,Listimportjpyfromdeephaven.jcompatimportj_runnablefromdeephavenimportDHError_executors:Dict[str,Callable[[Callable[[],None]],None]]={}
[docs]defhas_executor(executor_name:str)->bool:""" Returns True if an executor exists with that name. """returnexecutor_nameinexecutor_names()
[docs]defexecutor_names()->List[str]:""" Returns: the List of known executor names """returnlist(_executors.keys())
[docs]defsubmit_task(executor_name:str,task:Callable[[],None])->None:""" Submits a task to run on a named executor. If no such executor exists, raises KeyError. The provided task should take care to set up any execution context or liveness scope to ensure that the task runs as intended. Typically, tasks should not block on other threads. Ensure tasks never block on other tasks submitted to the same executor. Args: executor_name (str): the name of the executor to submit the task to task (Callable[[], None]): the function to run on the named executor Raises: KeyError if the executor name """_executors[executor_name](task)
def_register_named_java_executor(executor_name:str,java_executor:jpy.JType)->None:""" Provides a Java executor for user code to submit tasks to. Called during server startup. Args: executor_name (str): the name of the executor to register java_executor (jpy.JType): a Java Consumer<Runnable> instance Raises: DHError """ifexecutor_nameinexecutor_names():raiseDHError(f"Executor with name {executor_name} already registered")_executors[executor_name]=lambdatask:java_executor.accept(j_runnable(task))