Plugfy.Core.Data.Communication.STDInOut
1.0.9
dotnet add package Plugfy.Core.Data.Communication.STDInOut --version 1.0.9
NuGet\Install-Package Plugfy.Core.Data.Communication.STDInOut -Version 1.0.9
<PackageReference Include="Plugfy.Core.Data.Communication.STDInOut" Version="1.0.9" />
<PackageVersion Include="Plugfy.Core.Data.Communication.STDInOut" Version="1.0.9" />
<PackageReference Include="Plugfy.Core.Data.Communication.STDInOut" />
paket add Plugfy.Core.Data.Communication.STDInOut --version 1.0.9
#r "nuget: Plugfy.Core.Data.Communication.STDInOut, 1.0.9"
#:package Plugfy.Core.Data.Communication.STDInOut@1.0.9
#addin nuget:?package=Plugfy.Core.Data.Communication.STDInOut&version=1.0.9
#tool nuget:?package=Plugfy.Core.Data.Communication.STDInOut&version=1.0.9
Plugfy.Core.Data.Communication.STDInOut
Overview
The STDInOut extension of the Plugfy Core Data Communication module offers a straightforward and efficient method for handling data communication through standard input/output channels. This extension is designed to facilitate inter-component communication within applications by utilizing the most basic form of inter-process communication provided by the operating system.
Features
- Simple Integration: Easily integrates into any .NET application that requires inter-process communication via standard console inputs and outputs.
- Lightweight Communication Protocol: Utilizes simple JSON serialization for data transfer, making it both lightweight and easy to implement.
- Cross-Platform Compatibility: Works across different operating systems where the .NET runtime is supported, providing a universal solution for console-based data communication.
- Asynchronous Communication Support: Supports asynchronous operations to enhance performance and responsiveness in applications.
Installation
To integrate the SSTDInOut Communication Extension into your project, follow these steps:
- Clone the repository to your local machine.
- Include the project in your solution or reference the built assembly directly.
- Ensure your project targets .NET Framework 8 or higher.
Usage
To implement the STDInOut communication extension in your project, create an instance of the STDInOut
class and use it to send or receive messages. Initialize the communication with required configurations, if any.
Example:
var stdInOut = new STDInOut();
await stdInOut.InitializeAsync(null); // Initialize without specific configuration
await stdInOut.StartListeningAsync(); // Start listening for incoming data
// Sending data
await stdInOut.SendDataAsync(new { Message = "Hello, World!" });
License
This project is licensed under the GNU General Public License v3.0. See GNU GPL v3.0 for details.
Contributing
We welcome contributions! To contribute:
- Fork the repository.
- Create a new feature branch (
git checkout -b feature-new
). - Commit changes (
git commit -m "Added new feature"
). - Push to the branch (
git push origin feature-new
). - Submit a Pull Request.
For major changes, open an issue first to discuss the proposed changes.
Contact
For inquiries, feature requests, or issues, please open a GitHub issue or contact the Plugfy Foundation.
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. 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. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
- Plugfy.Core.Commons.Communication (>= 1.0.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.