glue-cli-lib
1.5.0
dotnet add package glue-cli-lib --version 1.5.0
NuGet\Install-Package glue-cli-lib -Version 1.5.0
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="glue-cli-lib" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add glue-cli-lib --version 1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: glue-cli-lib, 1.5.0"
#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 glue-cli-lib as a Cake Addin #addin nuget:?package=glue-cli-lib&version=1.5.0 // Install glue-cli-lib as a Cake Tool #tool nuget:?package=glue-cli-lib&version=1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
- See examples at https://github.com/InteropIO/native-examples/tree/main/glue-c-exports
- depends on io.connect.net.1.22
- async support for glue_write_context, glue_push_payload, glue_push_json_payload
If async_result is true, you have to use glue_read_async_result to await and cleanup the async result. By default async_result is false which will translate to synchronous writing.
const auto writer = glue_get_context_writer(channel_name.c_str(), "data.some_field");
auto json = "{a: 5, y: {s: \"yes\", z: 5.155, abc: [12,3,4,5,66]}, cyrillic: 'Кирил и Методий'}";
auto async_res = glue_push_json_payload(writer, json, true);
std::cout << "Written: " << glue_read_async_result(async_res, nullptr) << std::endl;
glue_destroy_resource(writer);
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
- io.Connect.NET (>= 1.22.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.