Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Editor/SwarmInterface/Public/SwarmInterface.h |
Include |
#include "SwarmInterface.h" |
int32 BeginJobSpecification
(
const FJobSpecification & Specification32,
const FJobSpecification & Specification64
)
Begins a Job specification, which allows a series of Tasks to be specified via AddTask. When Tasks are done being specified, call EndJobSpecification.
The default behavior will be to execute the Job executable with the specified parameters. If Tasks are added for the Job, they are expected to be requested by the executable run for the Job. If no Tasks are added for the Job, it is expected that the Job executable will perform its operations without additional Task input from Swarm.
int32 Error code (< 0 is an error)
Parameter |
Description |
---|---|
Specification32 |
A structure describing a new 32-bit Job (can be an empty specification) |
Specification64 |
A structure describing a new 64-bit Job (can be an empty specification) |