onPropsChanged

open fun onPropsChanged(old: PropsT, new: PropsT, state: StateT): StateT(source)

Called from RenderContext.renderChild instead of initialState when the workflow is already running. This allows the workflow to detect changes in props, and possibly change its state in response. This method is called only if the new props value is not == with the old.

Default implementation does nothing.