Message.Client.ORiN3.RemoteEngine 1.1.7

dotnet add package Message.Client.ORiN3.RemoteEngine --version 1.1.7
                    
NuGet\Install-Package Message.Client.ORiN3.RemoteEngine -Version 1.1.7
                    
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="Message.Client.ORiN3.RemoteEngine" Version="1.1.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Message.Client.ORiN3.RemoteEngine" Version="1.1.7" />
                    
Directory.Packages.props
<PackageReference Include="Message.Client.ORiN3.RemoteEngine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Message.Client.ORiN3.RemoteEngine --version 1.1.7
                    
#r "nuget: Message.Client.ORiN3.RemoteEngine, 1.1.7"
                    
#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.
#addin nuget:?package=Message.Client.ORiN3.RemoteEngine&version=1.1.7
                    
Install Message.Client.ORiN3.RemoteEngine as a Cake Addin
#tool nuget:?package=Message.Client.ORiN3.RemoteEngine&version=1.1.7
                    
Install Message.Client.ORiN3.RemoteEngine as a Cake Tool

Overview

This package is a gRPC client that implements the interfaces of ORiN3 Remote Engine.
It allows user applications to call various functions of ORiN3 Remote Engine.

How to use

A sample is shown below to explain how to use it. This sample does the following:

  • Communicates with ORiN3 Remote Engine and starts ORiN3 Provider (Mock).
using Design.ORiN3.Provider.Core.V1.Telemetry;
using Grpc.Net.Client;
using Message.Client.ORiN3.RemoteEngine.V1;

var channel = GrpcChannel.ForAddress("http://127.0.0.1:7103");

// Connect to Remote Engine
using var remoteEngine = await RemoteEngine.AttachAsync(channel, 10000, CancellationToken.None).ConfigureAwait(false);

// Launch a Mock Provider
var result = await remoteEngine.WakeupProviderAsync(
    id: "643D12C8-DCFC-476C-AA15-E8CA004F48E8",
    version: "1.0.85",
    threadSafeMode: true,
    endpoints: [new ProviderEndpoint(0, "127.0.0.1", 0, [])],
    logLevel: ORiN3LogLevel.Information,
    telemetryOption: new TelemetryOption(
        UseRemoteEngineTelemetrySetting: true,
        Endpoints: [],
        Attributes: new Dictionary<string, string>()),
    extension: new Dictionary<string, string>());

Console.WriteLine($"Instance Id : {result.Id}");
Console.WriteLine($"Endpoints   :");
foreach (var endpoint in result.ProviderInformation.EndPoints)
{
    Console.WriteLine($"  - {endpoint.Uri}");
}

Reference

The original proto file is stored in the following location:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Message.Client.ORiN3.RemoteEngine:

Package Downloads
Message.Client.ORiN3.RemoteEngine.ForCOM

C# implementation of ORiN3.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.7 668 4/21/2025
1.0.447 264 2/5/2025