Looking for something specific?
  Home
Home
Articles
Page Tag-Cloud
  Software
Software Tag-Cloud
Building from Source
Open Source Definition
All Software
  Popular Tags
Legacy
C Plus Plus
Source Code
Class
Cryptography
  Members
Login
Web-Email
Notable Members
  Official
Our Company
Copyright Information
Software EULA
GPL EULA
LGPL Eula
Pre-Release EULA
Privacy Policy
  Support
Make Contact
 
NTDLS.MemoryQueue
Downloads   0
User Rating   (Rate)
Last Updated   12/31/2024
License   MIT License
- Download -
View all Releases
Recommended Release
Version   2.2.13
Date   12/31/2024
Status   Stable Stable software is believed to be stable and ready for production use.

This software is open source. You can obtain the latest source code from the GitHub repository or browse the releases for the source code associated with a specific release. If you make any changes which you feel improves this application, please let us know via our Contact Page.

NTDLS.MemoryQueueServer

?? Be sure to check out the NuGet package: https://www.nuget.org/packages/NTDLS.MemoryQueue

In memory non-persistent message queue intended for inter-process-communication, queuing, load-balancing and buffering over TCP/IP.

Running the server:

Running the server can literally be done with two lines of code and can be run in the same process as the client. The server does not have to be dedicated either, it can be one of the process that is involved in inner-process-communication.

internal class Program
{
    static void Main()
    {
        var server = new MqQueuingService();

        //Listen for queue clients on port 45784, listen for web UI requests on port 8080.
        server.StartAsync(45784, 8080);

        Console.WriteLine("Press [enter] to shutdown.");
        Console.ReadLine();

        server.StopAsync();
    }
}

See documentation of https://www.nuget.org/packages/NTDLS.MemoryQueue">NTDLS.MemoryQueue for client and server interaction examples.

License

MIT


Recent Releases:
 2.2.13    2.2.12    2.0.0    1.1.2    1.1.1    1.1.0    1.0.0  

Tags:
 Inter Process Communication    Ipc    Message Broker    Message Queue    Netmq    Socket Programming    Tcp Ip    Zeromq  

No comments currently exists for this software. Why don't you add one?
First Previous Next Last 

 
Copyright © 2025 NetworkDLS.
All rights reserved.
 
Privacy Policy | Our Company | Contact