Package org.zkoss.chart.util
Interface DeferredCall
-
public interface DeferredCall
Used withOptionDataEvent.addJSFunctionCall(DeferredCall)
to defer calling the result of the JSFunction when the calls are unnecessary. Like in component rendering phase.- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(JSFunction func)
Executes the method when necessary, i.e.
-
-
-
Method Detail
-
execute
void execute(JSFunction func)
Executes the method when necessary, i.e. when the status of the component need to send to client side.- Parameters:
func
- the JSFunction to update the client side. (never be null)
-
-