Interface EventManagerCallbacks


public interface EventManagerCallbacks
This is a Java wrapper interface for IPython.core.events.EventManager

Python will call these trigger these events as appropriate during the IPython lifecycle

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Fires after code is executed in response to user/frontend action.
    void
    post_run_cell(org.jpy.PyObject result)
    Fires after user-entered code runs.
    void
    Fires before code is executed in response to user/frontend action.
    void
    pre_run_cell(org.jpy.PyObject info)
    Fires before user-entered code runs.
    void
    shell_initialized(org.jpy.PyObject ip)
    Fires after initialisation of InteractiveShell.