GoPlay.Server 0.2.10

dotnet add package GoPlay.Server --version 0.2.10
NuGet\Install-Package GoPlay.Server -Version 0.2.10
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="GoPlay.Server" Version="0.2.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GoPlay.Server --version 0.2.10
#r "nuget: GoPlay.Server, 0.2.10"
#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 GoPlay.Server as a Cake Addin
#addin nuget:?package=GoPlay.Server&version=0.2.10

// Install GoPlay.Server as a Cake Tool
#tool nuget:?package=GoPlay.Server&version=0.2.10

GoPlay Server Framework

NuGet

GoPlay originated from the demand for online game development. It is a simple, easy-to-use, low learning curve, and out-of-the-box RPC framework based on C#, but not limited to game usage. It can be used to solve any real-time network communication problems.

How To Use

Server

[Processor("echo")]
class EchoProcessor : ProcessorBase
{
    [Request("echo")]
    public PbString Echo(Header header, PbString str)
    {
        return new PbString
        {
            Value = $"Server reply: {str.Value}"
        };
    }

Client

//Echo_Echo is a function generated automatically by code.
var (status, resp) = await client.Echo_Echo(new PbString{
   Value = "Hello"
});
Assert.AreEqual(StatusCode.Success, status.Code);
Assert.AreEqual("Serv reply: Hello", resp.Value);

Concepts

Request

  • Client sends a request to the server and expects a response from the server.

Notify

  • Client sends a request to the server without requiring a response from the server.

Push

  • The server actively pushes data to the client.

Thanks

Thanks to JetBrains for providing an open source license for GoPlay.Net.

Thanks to JetBrains to provide opensource license for GoPlay.Net

The MIT License

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.10 54 5/17/2024
0.2.9 130 1/15/2024
0.2.8 147 12/14/2023
0.2.7 103 12/14/2023
0.2.6 141 11/13/2023
0.2.5 111 11/4/2023
0.2.4 103 11/4/2023
0.2.3 104 11/3/2023
0.2.2 122 10/27/2023
0.2.1 117 10/21/2023
0.2.0 121 9/15/2023
0.1.0 140 7/27/2023