You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can extend the functionality of a FramedGraph via modules.
publicinterfaceModule {
/** * @param baseGraph The graph being framed. * @param config The configuration for the new FramedGraph. * @return The graph being framed. */
<TextendsGraph> Tconfigure(GraphbaseGraph, FramedGraphConfigurationconfig);
}
You may wrap the graph being framed by returning the wrapped graph from this configure. For example, you could return an EventGraph if your module needs to know about graph events.
Notes
The configure method should be fast, as it will potentially be called many times.