PurpleSofa 0.0.8
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 PurpleSofa --version 0.0.8
NuGet\Install-Package PurpleSofa -Version 0.0.8
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="PurpleSofa" Version="0.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PurpleSofa --version 0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PurpleSofa, 0.0.8"
#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 PurpleSofa as a Cake Addin #addin nuget:?package=PurpleSofa&version=0.0.8 // Install PurpleSofa as a Cake Tool #tool nuget:?package=PurpleSofa&version=0.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
PurpleSofa - C# .NET async tcp server & client
feature
- Callback for 'OnOpen'(accepted or connected), 'OnMessage'(received), 'OnClose'(received none).
- Can store user value in session.
- Check timeout at regular intervals by last receive time. It's useful to detect 'half close'.
- 'OnClose' execution is taken via queue in order to avoid simultaneously many 'close'.
how to use
callback
public class Callback : PsCallback
{
private const string Key = "inc";
public override void OnOpen(PsSession session)
{
Console.WriteLine($"OnOpen {session}");
session.SetValue(Key, 0);
session.ChangeIdleMilliSeconds(5000);
int inc = session.GetValue<int>(Key);
session.Send($"inc: {inc}");
}
public override void OnMessage(PsSession session, byte[] message)
{
Console.WriteLine($"OnMessage {session} {Encoding.UTF8.GetString(message)}");
int inc = session.GetValue<int>(Key);
inc++;
session.SetValue(Key, inc);
session.Send($"inc: {inc}");
if (inc > 3) session.Close();
}
public override void OnClose(PsSession session, PsCloseReason closeReason)
{
session.ClearValue(Key);
int inc = session.GetValue<int>(Key);
Console.WriteLine($"OnClose {session} {closeReason}, inc:{inc}");
}
}
for server
public static void Main(string[] args)
{
var server = new PsServer(new Callback());
server.Start();
server.WaitFor();
// --- another thread
// server.Shutdown();
}
for client
public static void Main(string[] args)
{
var client = new PsClient(new Callback(), "127.0.0.1", 8710);
client.Connect();
// ...
client.Disconnect();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on PurpleSofa:
Package | Downloads |
---|---|
FluentNetting
Fluent forwarded server. |
GitHub repositories
This package is not used by any popular GitHub repositories.