Giter VIP home page Giter VIP logo

Comments (6)

danielAsaboro avatar danielAsaboro commented on August 21, 2024

It turns out that it works, but i only get the responses from the acknowledgement (args) after timeout.
is there a way to get it as it arrives (asynchronously)? IIRC, the Nodejs socket io library does this.
And is this a skill issue on my end?

I'm doing this because I'm setting up a quiz platform where the message gets pushed to all connected clients...
and i want to use how fast they respond in grading them also

from socket.io.

zishang520 avatar zishang520 commented on August 21, 2024

The broadcast EmitWithAck will wait for all clients to respond or time out before returning data.

from socket.io.

danielAsaboro avatar danielAsaboro commented on August 21, 2024

Hi, thanks for the response.
Please is there an available API to broadcast to the room, and get the callback response when each client does response and not together?

from socket.io.

zishang520 avatar zishang520 commented on August 21, 2024

Depending on your needs, you should use Ack for each clinet instead of broadcasting Ack, as in the following example:

io.On("connection", func(clients ...interface{}) {
		client := clients[0].(*socket.Socket)
		client.EmitWithAck("this-rider-location", "receivedMessage")(
			func(args []any, err error) {
				fmt.Print(err)
				if err == nil {
					fmt.Println("we got a response")
				}
			})
		client.On("disconnect", func(...interface{}) {
			// utils.Log().Success("/ test disconnect")
		})
	})

from socket.io.

danielAsaboro avatar danielAsaboro commented on August 21, 2024

Return: a func(func([]any, error)) that will be fulfilled when all clients have acknowledged the event
using client does the same — wait for all client...
my use-case would love to initiate an action as each clients acknowledge not wait for all

I appreciate the help regardless, thank you

from socket.io.

zishang520 avatar zishang520 commented on August 21, 2024

If you have any other questions, please feel free to contact me.

from 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.