FAlertMessage

Implementation of a alert message, which includes:

Windows
MacOS
Linux

Inheritance Hierarchy

FMessage

FAlertMessage

References

Module

SwarmInterface

Header

/Engine/Source/Editor/SwarmInterface/Public/SwarmInterface.h

Include

#include "SwarmInterface.h"

Syntax

class FAlertMessage : public NSwarm::FMessage

Remarks

Implementation of a alert message, which includes:

  • The alert type: a) warning b) error c) critical error

  • The Job GUID

  • The GUID of the item causing the issue

  • A 32-bit field intended to identify the type of the item

  • A string giving the issue message (which will be localized on the Unreal side of things).

Variables

Name Description

Public variable

TAlertLevel

 

AlertLevel

The type of alert

Public variable

FGuid

 

JobGuid

The Job Guid

Public variable

FGuid

 

ObjectGuid

The identifier for the object that is associated with the issue

Public variable

const TCHAR ...

 

TextMessage

Generic text message for informational purposes

Public variable

int

 

TypeId

App-specific identifier for the type of the object

Constructors

Name Description

Public function

FAlertMessage

(
    const FGuid& InJobGuid,
    TAlertLevel InAlertLevel,
    const FGuid& InObjectGuid,
    int InTypeId
)

Constructor, initializes to default and specified values

Public function

FAlertMessage

(
    const FGuid& InJobGuid,
    TAlertLevel InAlertLevel,
    const FGuid& InObjectGuid,
    int InTypeId,
    const TCHAR* InTextMessage
)

Constructor, initializes to default and specified values

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss