Function loadSerializedEvent
- loadSerializedEvent(
flow: Pick<Flow<Node>, "ports" | "dispatching" | "nodes">,
data: NfEventDetail<
PickMatching<Node, (...arguments_: any) => any>,
PickMatching<Port, (...arguments_: any) => any>,
PickMatching<Flow<Node>, (...arguments_: any) => any>,
>,
options?: {
pick: {
Flow?: (keyof Flow<Node>)[];
Node?: (keyof Node)[];
Port?: (keyof Port)[];
};
},
): void Parameters
- flow: Pick<Flow<Node>, "ports" | "dispatching" | "nodes">
- data: NfEventDetail<
PickMatching<Node, (...arguments_: any) => any>,
PickMatching<Port, (...arguments_: any) => any>,
PickMatching<Flow<Node>, (...arguments_: any) => any>,
> Optional
options: {
pick: {
Flow?: (keyof Flow<Node>)[];
Node?: (keyof Node)[];
Port?: (keyof Port)[];
};
}
Returns void