PurpleSofa 0.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package PurpleSofa --version 0.0.2
NuGet\Install-Package PurpleSofa -Version 0.0.2
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.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PurpleSofa --version 0.0.2
#r "nuget: PurpleSofa, 0.0.2"
#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.2

// Install PurpleSofa as a Cake Tool
#tool nuget:?package=PurpleSofa&version=0.0.2

PurpleSofa - C# .NET async tcp server & client

nuget .NET CI codecov License

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)
    {
        session.SetValue(Key, 0);
        session.ChangeIdleMilliSeconds(5000);

        int inc = session.GetValue<int>(Key);
        session.Send($"On Open inc: {inc}\n".PxToBytes());
    }

    public override void OnMessage(PsSession session, byte[] message)
    {
        int inc = session.GetValue<int>(Key);
        inc++;
        session.SetValue(Key, inc);
        session.Send($"On Message inc: {inc}\n".PxToBytes());
        if (inc > 3) session.Close();
    }

    public override void OnClose(PsSession session, PsCloseReason closeReason)
    {
        session.ClearValue(Key);
        PsLogger.Debug($"OnClose {session} {closeReason}");
    }
}

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 CallbackClient(), "127.0.0.1", 8710);
    client.Connect();
    // ...
    client.Disconnect();
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.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.

Version Downloads Last updated
0.2.0 39 4/15/2024
0.1.1 402 12/8/2023
0.1.0 449 9/5/2023
0.0.9 609 1/3/2023
0.0.8 611 12/20/2022
0.0.7 716 12/12/2022
0.0.6 955 1/24/2022
0.0.5 929 1/13/2022
0.0.4 594 12/21/2021
0.0.3 619 12/10/2021
0.0.2 667 12/2/2021
0.0.1 629 12/2/2021