Redpoint.Uba
2024.1311.540
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Redpoint.Uba --version 2024.1311.540
NuGet\Install-Package Redpoint.Uba -Version 2024.1311.540
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Redpoint.Uba" Version="2024.1311.540" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Redpoint.Uba --version 2024.1311.540
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Redpoint.Uba, 2024.1311.540"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Redpoint.Uba as a Cake Addin #addin nuget:?package=Redpoint.Uba&version=2024.1311.540 // Install Redpoint.Uba as a Cake Tool #tool nuget:?package=Redpoint.Uba&version=2024.1311.540
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Redpoint.Uba
This library provides an implementation of IProcessExecutor
that dispatches processes to Unreal Build Accelerator agents.
Example
After registering the services by calling .AddUba()
on your service collection, you can inject IUbaServerFactory
. With this, you can create a UBA server, connect it to remote agents, and then run processes:
// Provide the path to the directory that contains UbaHost.dll, libUbaHost.dylib or libUbaHost.so depending on the current platform.
// These files are available by downloading Unreal Engine: https://www.unrealengine.com/
UbaNative.Init(/* ... */);
// Set up the server that will dispatch processes.
await using (_ubaServerFactory
.CreateServer(
cachePath /* A path that UBA can use for storage locally. */,
traceFilePath /* The path that UBA should write the trace file out to. */)
.AsAsyncDisposable(out var server)
.ConfigureAwait(false))
{
// Connect to a remote agent that will run processes. You can call this multiple times, and
// at any time processes are being executed.
if (!server.AddRemoteAgent(ip, port))
{
// Failed to add remote agent.
}
// Run a command through UBA. Commands are put into a queue and then either run locally
// or on a remote agent depending on which picks it up first.
try
{
var exitCode = await server.ExecuteAsync(
new UbaProcessSpecification /* Inherits from ProcessSpecification. */
{
FilePath = /* ... */,
Arguments = /* ... */,
// Optional setting; if true, the UBA server will prefer to wait and run this command
// on a remote agent rather than running it locally.
PreferRemote = true,
},
CaptureSpecification.Passthrough,
cancellationToken).ConfigureAwait(false);
return exitCode;
}
catch (OperationCanceledException)
{
// Only need to catch this if you're passing cancellationToken to ExecuteAsync (i.e. this
// exception only fires if you request the process to be cancelled, and not from any UBA
// internal events).
return 1;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Redpoint.ProcessExecution (>= 2024.1311.540)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2024.1317.631 | 58 | 11/12/2024 |
2024.1316.330 | 70 | 11/11/2024 |
2024.1311.540 | 64 | 11/6/2024 |
2024.1306.225 | 66 | 11/1/2024 |
2024.1306.199 | 68 | 11/1/2024 |
2024.1306.171 | 60 | 11/1/2024 |
2024.1306.117 | 63 | 11/1/2024 |
2024.1305.506 | 67 | 10/31/2024 |
2024.1305.502 | 66 | 10/31/2024 |
2024.1305.465 | 68 | 10/31/2024 |
2024.1305.442 | 68 | 10/31/2024 |
2024.1305.399 | 75 | 10/31/2024 |
2024.1299.1070 | 70 | 10/25/2024 |
2024.1289.621 | 84 | 10/15/2024 |
2024.1289.338 | 82 | 10/15/2024 |
2024.1277.836 | 83 | 10/5/2024 |
2024.1277.711 | 82 | 10/3/2024 |
2024.1277.695 | 77 | 10/3/2024 |
2024.1270.409 | 91 | 9/26/2024 |