Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Insert excerpt
BrightScript Version Navigation Menu
BrightScript Version Navigation Menu
nopaneltrue
This event object is returned by the roAssetRealizer.Realize() method. It yields information about the success or failure of the realization process.

ifAssetRealizerEvent

GetEvent() As

...

IntegerĀ 
Anchor
getevent()
getevent()

Returns an integer value indicating the type of the event:

101

EVENT_REALIZE_SUCCESS

The specified sync list was successfully realized.

-102

EVENT_REALIZE_INCOMPLETE

Realization could not begin because at least one of the required files is not available in the pool.

-103

EVENT_REALIZE_FAILED_SAFE

Realization has failed. Nothing has been written to the destination, so it is likely safe to continue the realization process. More information is about the failure is available via the GetFailureReason() and GetName() methods.

-104

EVENT_REALIZE_FAILED_UNSAFE

Realization has failed while running, and changes have been made to destination files. It may not be safe to continue the realization process. More information about the failure is available via the GetFailureReason() and GetName() methods.

GetName() As String

Retrieves the name of the affected file if the realization process fails.

...