Click or drag to resize

SignalEventsFork Method

Called to fork a signal into two signals.

Namespace:  Demo3D.IO
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
protected virtual SignalEvents? Fork()

Return Value

Type: SignalEvents
New events for the forked signal.
Remarks

A signal forks for example when we batch read a large amount of IO. The signal that's tracked during the batch read operation gets forked when we divide the batch data into individual tags. Each tag independently passes upstream a signal forked from the original batch IO signal.

See Also