fiorix / go-smpp

SMPP 3.4 Protocol for the Go programming language
MIT License
219 stars 134 forks source link

Using multiple tranceiver.Submit via go routines #118

Open tahseenjamal opened 1 year ago

tahseenjamal commented 1 year ago

If I create a single bind and then use multiple submits via go routine, will that cause issue related to response ErrTimeout ?

Asking because I something like below for a single binding

for i = 0; i < 5; i++ { go smpp_submit() }

Will this result in excessive locking ? And cause "timeout waiting for response" error ?