Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface PromiseExecutor
  • Method Summary

    Modifier and Type
    Method
    Description
    org.python.core.PyObject
    invoke(org.python.core.PyObject callback, org.python.core.PyObject... args)
     
    default org.python.core.PyObject
    invokeUnchecked(org.python.core.PyObject callback, org.python.core.PyObject... args)
     
  • Method Details

    • invoke

      org.python.core.PyObject invoke(org.python.core.PyObject callback, org.python.core.PyObject... args) throws JythonExecException
      Throws:
      JythonExecException
    • invokeUnchecked

      default org.python.core.PyObject invokeUnchecked(org.python.core.PyObject callback, org.python.core.PyObject... args)