Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature requests: callbacks on event #9

Closed
matt-callanan opened this issue Dec 16, 2011 · 1 comment
Closed

feature requests: callbacks on event #9

matt-callanan opened this issue Dec 16, 2011 · 1 comment

Comments

@matt-callanan
Copy link

Requesting callbacks on events, per our quick email exchange.

Here's how it works in node:

Client:

socket.emit('test', { an: "object", from: "the client" }, function(response) {
//do stuff with response, which == { an: "object", from: "the server" }
});

Server:

socket.on('test', function(message, callback) {
//do stuff with message, which == { an: "object", from: "the client" }
callback({ an: "object", from: "the server" });
});

@simb
Copy link
Owner

simb commented Jan 17, 2012

this was added via bwillard in a recent addition.

@simb simb closed this as completed Jan 17, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants