OpenSmpp / opensmpp

OpenSmpp - Java library implementing the SMPP protocol, and allowing development of External Short Message Entities (ESMEs) and more.
http://opensmpp.org/
Other
188 stars 170 forks source link

Window Size/TPS Throttle #48

Closed tkiran77 closed 4 years ago

tkiran77 commented 4 years ago

Hello All, Anyone using this library is aware how to set window size or Throttle TPS based on the Server we connect to, to ensure we send not more than the configured TPS. Any insight is really appreciated. Regards, Kiran

apelzin commented 4 years ago

I ended up writing my own code to ensure obeying TPS.

paoloc0 commented 4 years ago

This library provides protocol-level support for SMPP, but not higher-level functionality like enforcing a window size, or even managing a window of unacknowledged PDUs - you will have to write that yourself.

tkiran77 commented 4 years ago

Thank you for your comments. We will try to implement the same and once done we will try to see if we can share our implementation for others to use.