Redpoint.Uba 2025.1002.636

Prefix Reserved
dotnet add package Redpoint.Uba --version 2025.1002.636                
NuGet\Install-Package Redpoint.Uba -Version 2025.1002.636                
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="2025.1002.636" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Redpoint.Uba --version 2025.1002.636                
#r "nuget: Redpoint.Uba, 2025.1002.636"                
#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=2025.1002.636

// Install Redpoint.Uba as a Cake Tool
#tool nuget:?package=Redpoint.Uba&version=2025.1002.636                

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 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.

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
2025.1002.636 45 1/2/2025
2025.1001.1435 47 1/2/2025
2025.1001.1397 38 1/1/2025
2025.1001.770 51 1/1/2025
2025.1001.570 51 1/1/2025
2025.1001.558 45 1/1/2025
2025.1001.421 42 1/1/2025
2025.1001.390 42 1/1/2025
2025.1001.234 46 1/1/2025
2025.1001.123 47 1/1/2025
2024.1360.354 82 12/25/2024
2024.1360.60 79 12/25/2024
2024.1360.32 85 12/25/2024
2024.1358.450 68 12/23/2024
2024.1358.359 72 12/23/2024
2024.1358.312 70 12/23/2024
2024.1358.244 76 12/23/2024
2024.1358.120 72 12/23/2024
2024.1348.253 91 12/13/2024
2024.1345.1379 80 12/10/2024
2024.1345.506 71 12/10/2024
2024.1345.379 79 12/10/2024
2024.1345.145 82 12/10/2024
2024.1345.72 71 12/10/2024
2024.1345.69 75 12/10/2024
2024.1345.15 82 12/10/2024
2024.1344.1436 76 12/10/2024
2024.1344.600 86 12/9/2024
2024.1344.411 83 12/9/2024
2024.1340.379 89 12/5/2024
2024.1340.15 92 12/5/2024
2024.1338.786 79 12/3/2024
2024.1338.722 83 12/3/2024
2024.1338.697 78 12/3/2024
2024.1338.639 79 12/3/2024
2024.1338.541 80 12/3/2024
2024.1338.318 84 12/3/2024
2024.1338.298 80 12/3/2024
2024.1338.98 82 12/3/2024
2024.1337.756 80 12/2/2024
2024.1337.634 87 12/2/2024
2024.1337.625 80 12/2/2024
2024.1337.621 81 12/2/2024
2024.1337.594 85 12/2/2024
2024.1337.136 72 12/2/2024
2024.1336.793 88 12/1/2024
2024.1336.773 84 12/1/2024
2024.1336.305 88 12/1/2024
2024.1336.12 88 12/1/2024
2024.1335.1421 90 11/30/2024
2024.1335.1384 86 11/30/2024
2024.1334.1308 83 11/29/2024
2024.1334.764 80 11/29/2024
2024.1334.722 81 11/29/2024
2024.1330.185 86 11/25/2024
2024.1328.505 84 11/23/2024
2024.1328.470 87 11/23/2024
2024.1328.452 81 11/23/2024
2024.1323.910 85 11/18/2024
2024.1323.653 82 11/18/2024
2024.1323.185 77 11/18/2024
2024.1323.49 81 11/18/2024
2024.1322.714 80 11/17/2024
2024.1320.653 91 11/15/2024
2024.1320.619 84 11/15/2024
2024.1320.601 86 11/15/2024
2024.1320.159 96 11/15/2024
2024.1320.98 84 11/15/2024
2024.1320.2 80 11/15/2024
2024.1319.1431 82 11/15/2024
2024.1319.1335 86 11/14/2024
2024.1317.631 84 11/12/2024
2024.1316.330 96 11/11/2024
2024.1311.540 86 11/6/2024
2024.1306.225 85 11/1/2024
2024.1306.199 89 11/1/2024
2024.1306.171 78 11/1/2024
2024.1306.117 84 11/1/2024
2024.1305.506 86 10/31/2024
2024.1305.502 85 10/31/2024
2024.1305.465 88 10/31/2024
2024.1305.442 85 10/31/2024
2024.1305.399 90 10/31/2024
2024.1299.1070 84 10/25/2024
2024.1289.621 98 10/15/2024
2024.1289.338 98 10/15/2024
2024.1277.836 96 10/5/2024
2024.1277.711 97 10/3/2024
2024.1277.695 92 10/3/2024
2024.1270.409 104 9/26/2024