{{ objname }} {{ underline }}============== .. currentmodule:: {{ module }} .. autoclass:: {{ objname }} .. NOTE:: {{objname}} implements the standard :py:class:`Runnable Interface `. 🏃 The :py:class:`Runnable Interface ` has additional methods that are available on runnables, such as :py:meth:`with_types `, :py:meth:`with_retry `, :py:meth:`assign `, :py:meth:`bind `, :py:meth:`get_graph `, and more. {% block attributes %} {% if attributes %} .. rubric:: {{ _('Attributes') }} .. autosummary:: {% for item in attributes %} ~{{ item }} {%- endfor %} {% endif %} {% endblock %} {% block methods %} {% if methods %} .. rubric:: {{ _('Methods') }} .. autosummary:: {% for item in methods %} ~{{ item }} {%- endfor %} {% for item in methods %} .. automethod:: {{ item }} {%- endfor %} {% endif %} {% endblock %} .. example_links:: {{ objname }}