Git Product home page Git Product logo

Comments (5)

googollee avatar googollee commented on June 12, 2024

What's acknowledgment functions? Is it a part of socket.io? I can't understand your propose.

from go-socket.io.

Sean-Der avatar Sean-Der commented on June 12, 2024

Sorry for not explaining myself fully. Currently my emit is passing a function as a callback, http://stackoverflow.com/questions/20337832/is-socket-io-emit-callback-appropriate is an example

from go-socket.io.

googollee avatar googollee commented on June 12, 2024

I'm not good at javascipt. So please point out if I'm wrong.

The example in stack overflow seems pass a callback function from client to server first, then pass back to client from server, and client use that function to do something.

If so, golang doesn't have the capability to marshal the function. It's a compiled function and can't be re-parse to something like code again. It's the main different of compiled language and dynamic language.

from go-socket.io.

Sean-Der avatar Sean-Der commented on June 12, 2024

You are 100% correct on the intent of the code.

However, Golang doesn't actually have to marshall a function. All it has to do is pass the args, it doesn't care about the contents of the function. I don't know the socket.io protocol, but consider the following.

      socket.emit('fooBar', function(val) {
        //val will be equal to true
      });
    func fooBarHandler(ns *socketio.NameSpace, callback func(val interface{}) interface{}) {
      callback(true)
    }

So we will lose all type safety, but I have no idea how the socket.io protocol works. In my head it looks like the emit is just blocked until it gets a return from the callback. I have no idea though.

from go-socket.io.

Sean-Der avatar Sean-Der commented on June 12, 2024

Implemented by PR #36

from go-socket.io.

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.