Reactors may be transient or persistent. Transient reactors are lost when a drawing closes; this is the default reactor mode. Persistent reactors are saved with the drawing and exist when the drawing is next opened.
vlr-pers function to make a reactor persistent. To remove persistence from a reactor and make it transient, use vlr-pers-release. Each function takes a Reactor object as its only argument. For example, the following command makes a reactor persistent:
Use the_$ (vlr-pers circleReactor)
#<VLR-Object-Reactor>
vlr-pers returns the specified Reactor object.
If successful,vlr-pers-p. For example:
To determine whether a Reactor object is persistent or transient, issue_$ (vlr-pers-p circleReactor)
#<VLR-Object-Reactor>
vlr-pers-p function returns the Reactor object if it is persistent, nil if it is not.
The