Class PythonFunctionCaller

java.lang.Object
io.deephaven.integrations.python.PythonFunctionCaller
All Implemented Interfaces:
Function<Object[],Object>

@ScriptApi public class PythonFunctionCaller extends Object implements Function<Object[],Object>
A class which calls a Python callable.
  • Constructor Details

    • PythonFunctionCaller

      public PythonFunctionCaller(org.jpy.PyObject pyObjectIn)
      Creates a Function which calls a Python function.
      Parameters:
      pyObjectIn - the python object providing the function - must either be callable or have an `apply` attribute which is callable.
  • Method Details