Actor:Pre Launch Init [Protected]
- Updated2025-07-30
- 2 minute(s) read
(Filename: Actor Framework.lvlib:Actor.lvclass:Pre Launch Init.vi)
Defines behavior that occurs after the Launch Nested Actor method is invoked but before the actor's Actor Core method begins running.
By default, this method does nothing. A descendant class may override it to define behavior.

Inputs/Outputs
Actor in
—
Actor in specifies the actor.
Actor out
—
Actor out returns the actor.
error out
—
error out contains error information. This output provides standard error out functionality. |
The Pre Launch Init method is guaranteed to finish before the Launch Nested Actor method returns to its caller and before the actor itself receives any messages. Any references that the Pre Launch Init method obtains are guaranteed to have the same lifetime as the actor itself. Any errors that the Pre Launch Init method returns will abort the launch.
Overrides of the Pre Launch Init method can use the actor's to-caller and to-self enqueuer.
Actor in
—
Actor out
—
error out
—