Search found 3 matches

by Kernighan
Mon Sep 07, 2015 7:49 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: SubmitAsync memory consumption without deallocation
Replies: 5
Views: 25665

SubmitAsync memory consumption without deallocation

Hi guys, with performance test i noticed that SubmitAsync consum a lot of memory without stops a deallocating.
Can someone help me to resolve this issue? Possible i made something wrong. Thanks for any help.

private static void SmppClientOnEvSubmitComplete(object sender, SubmitSmResp submitSmResp ...
by Kernighan
Tue Jun 16, 2015 1:01 pm
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: SubmitAsync data.Response.Status
Replies: 3
Views: 16923

Re: SubmitAsync data.Response.Status

For example i wrote the following code:

private static void SmppServer_evClientSubmitSm(object sender, SmppServerClient client, SubmitSm data)
{
try
{
Task.Factory.StartNew(() =>
{
if (data.RegisteredDelivery != 0)
{
var deliver = client.Deliver(SMS.ForDeliver().From(data.SourceAddr, data ...
by Kernighan
Fri Jun 12, 2015 9:27 am
Forum: Inetlab.SMPP v1.1 & v1.2
Topic: SubmitAsync data.Response.Status
Replies: 3
Views: 16923

SubmitAsync data.Response.Status

First, thanks for amazing library, I bought source code licence.

I have the following issue: When i get message on SmppServerOnEvClientSubmitSm and make smppClient.Submit(data) i can response back to the client who sends me the message
data.Response.Status = response.Status; or other status which i ...