Navigation
API > API/Developer > API/Developer/SourceControl
Hint for how to execute the operation. Note that asynchronous operations require Tick() to be called to manage completed operations.
| Name | EConcurrency::Type |
| Type | enum |
| Header File | /Engine/Source/Developer/SourceControl/Public/ISourceControlProvider.h |
| Include Path | #include "ISourceControlProvider.h" |
Syntax
namespace EConcurrency
{
enum Type
{
Synchronous,
Asynchronous,
}
}
Values
| Name | Remarks |
|---|---|
| Synchronous | Force the operation to be issued on the same thread, blocking until complete. |
| Asynchronous | Run the command on another thread, returning immediately. |