Skip to content
master
Go to file
Code
This branch is 8 commits ahead, 12 commits behind pauldemarco:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

SocketCluster Dart Client

SocketCluster Client is the client-side component of SocketCluster.

Example Usage

  var socket = await Socket.connect('ws://localhost:8000/socketcluster/',
      listener: new MyListener());
      
  socket.on('rand', (name, data, ack) {
    print('got message $data from event $name');
    ack(name, 'No error', 'Hi there buddy');
  });

Note

This is a straight and dirty port from the C# client.

Large changes will be made to clean this up and make it more 'Dartified'

For instance, BasicListener will be removed in favor of Stream

About

SocketCluster.io Client for Dart

Topics

Resources

License

Packages

No packages published
You can’t perform that action at this time.