Navigation
Unreal Engine C++ API Reference > Editor > SwarmInterface > FSwarmInterface
References
Module | SwarmInterface |
Header | /Engine/Source/Editor/SwarmInterface/Public/SwarmInterface.h |
Include | #include "SwarmInterface.h" |
int32 BeginJobSpecification
&40;
const FJobSpecification & Specification32,
const FJobSpecification & Specification64
&41;
Remarks
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)
Parameters
Name | 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) |