[docs]classCallback(abc.ABC):"""Base class of the Callback API."""
[docs]defon_execute_start(self,*args:Any,**kwargs:Any)->None:"""Execute this method called before node execute method."""pass
[docs]defon_execute_end(self,result:Any)->None:"""Execute this method called after node execute method. Args: result (Any): execute method output. """pass