FJobSpecification::AddDependencies

Used to add channel dependencies to a Job.

Choose your operating system:

Windows

macOS

Linux

References

Module

SwarmInterface

Header

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

Include

#include "SwarmInterface.h"

Syntax

void AddDependencies
(
    const TCHAR ** NewRequiredDependencies,
    uint32 NewRequiredDependencyCount,
    const TCHAR ** NewOptionalDependencies,
    uint32 NewOptionalDependencyCount
)

Remarks

Used to add channel dependencies to a Job. When an Agent runs this Job, it will ensure that all dependencies are satisfied prior to launching the executable.

that the Job executable is an implied dependency.

Parameters

Parameter

Description

NewRequiredDependencies

The list of additional required dependent channel names

NewRequiredDependencyCount

The number of elements in the NewRequiredDependencies list

NewOptionalDependencies

The list of additional optional dependent channel names

NewOptionalDependencyCount

The number of elements in the NewOptionalDependencies list