socket.io-client-dart icon indicating copy to clipboard operation
socket.io-client-dart copied to clipboard

socket.io-client-dart: Dartlang port of socket.io-client https://github.com/socketio/socket.io-client

Results 158 socket.io-client-dart issues
Sort by recently updated
recently updated
newest added

can I use http2 in socket io ?

if we are connected to wifi and there is no internet, socket takes a while to get disconnected, then if we send some message when there is no internet and...

question

**socketio = SocketIO(message_queue='redis://') socketio.emit('my event', {'data': 'foo'}, namespace='/test')** How to achieve the above code in dart?

enhancement

i follow instruction code as below: IO.Socket socket = IO.io("http://host.com:port",); i debug break point realized it's Manager never drop into open -> // emit `open` var openSub = ON.on(socket, 'open',...

question

I set "reconnection" to true..according to code, reconnectionAttempts are infinity. After going in airplane mode, I see one reconnect attemp and that's it. After going out of airplane mode, sockets...

flutter-related

Hi! I tried to send message from isolate function. But it's not work. Is it possible? Test code: ```dart import 'package:flutter/material.dart'; import 'package:flutter/foundation.dart'; import 'package:socket_io_client/socket_io_client.dart' as IO; final IO.Socket socket...

question

when using emitWithAck function, is there a way to get timeout and resend a message with ack?

question

i notice that the function onpacket(packet){} is used to classify server messages,and have 5 case in there,i think only EVENT is custom message,but i often receive BINARY_EVENT with null data,and...

flutter-related

have been using [socket_io_client](https://pub.dev/packages/socket_io_client) package to implement the real-time messaging in a flutter app. I am stuck at a point where I am unable to figure out where to apply...

question
flutter-related