Git Product home page Git Product logo

Comments (3)

ti24horas avatar ti24horas commented on June 20, 2024

@Sukhrob you're doing the inverse.
Normally, you wait for the response for submit_sm (submit_sm_resp) and associate the message_id with your database.

from node-smpp.

sukhrobkhakimov avatar sukhrobkhakimov commented on June 20, 2024

Thanks for your response @ti24horas. Here is the code:

var sms = JSON.parse(data); // Coming from RabbitMQ consumer

// Send an SMS
session.submit_sm({
    registered_delivery: true,
    source_addr: sms.sender,
    destination_addr: sms.recipient,
    short_message: sms.message
}, function (pdu) { // Here, I would want to bind each client to their own SMSs like this if possible: function (pdu, sms) {
    var parameters = {
        client_id: sms.client_id, // Is it safe to put client_id here directly as it is an asynchronous request?
        sender: pdu.source_addr,
        recipient: pdu.destination_addr,
        message: pdu.short_message,
        message_id: pdu.message_id,
        status: pdu.command_status,
        created_at: new Date()
    };

    // Save an SMS to the database
});

Say, if there are 10 clients which send a lot of SMSs per second, can one client overwrite another one's SMS?

from node-smpp.

farhadi avatar farhadi commented on June 20, 2024

If your code is inside a function scope and you call submit_sm once in this scope (i.e. not in a loop) and you don't alter sms variable in this scope later, it's most likely safe to use the code you quoted.

from node-smpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.