AmiClient icon indicating copy to clipboard operation
AmiClient copied to clipboard

Modern .NET Standard client for accessing the Asterisk AMI protocol using async/await and Reactive Extensions (Rx)

Results 5 AmiClient issues
Sort by recently updated
recently updated
newest added

Hi, when we user code on hi-load server(above 500 users and 50 CPS) Asterisk 18 is down: AMI Manager freezes on command asterisk -rx "manager show connected". What happens :...

Some answers come truncated when it is very long. For example: `await client.Publish(new AmiMessage { { "Action", "PJSIPShowContacts" } });` I need modify in **AmiClient.cs** ` try { var bytes...

I dont understand why method Subscribe not working. Example: This code ``` var response = await amiClient.Where(message => message["Event"] == "Newstate").FirstAsync(); foreach (var item in response) { Console.WriteLine(item.Key + ":"...

Fix of issue #18 * add a concurrent queue with two worker threads * EventReader: reads incoming events from stream and enqueues them * EventWorker: dequeues events and parses them...

If asterisk reports a Timestamp with a value with a separator, it may cause an error in the conversion (if you are using the application in a Windows environment, the...