Giter Club home page Giter Club logo

socket.io-csharp-emitter's Introduction

socket.io-csharp-emitter

A C# implementation of socket.io-emitter

Build status

socket.io provides a hook point to easily allow you to emit events to browsers from anywhere so socket.io-csharp-emitter communicates with socket.io servers through redis

How to use

PM> Install-Package SocketIO.Emitter
 IEmitter io = new Emitter(new EmitterOptions
    {
        Host = "localhost",
        Port = 6379
    });
  io.Emit("news","Hello from c# emitter");

API

Emitter(EmitterOptions opts)

The following options are allowed:

  • Key: the name of the key to pub/sub events on as prefix (socket.io)
  • Host: host to connect to redis on (localhost)
  • Port: port to connect to redis on (6379)
  • Version: Version of socket IO (EmitterOptions.EVersion.V0_9_9)

NB : If you use a version of socket.io >= 1.4.4 change property Version to EmitterOptions.EVersion.V1_4_4.

If you don't want to supply a redis client object, and want socket.io-csharp-emitter to intiialize one for you, make sure to supply the host and port options.

Specifies a specific room that you want to emit to.

Emitter#In(string room):IEmitter

 IEmitter io = new Emitter(new EmitterOptions
 {
    Host = "localhost",
    Port = 6379
 });
    
 io.In("room-name").Emit("news","Hello from c# emitter");

Emitter#To(string room):IEmitter

 IEmitter io = new Emitter(new EmitterOptions
 {
    Host = "localhost",
    Port = 6379
 });
    
 io.To("room-name").Emit("news","Hello from c# emitter");

Emitter#Of(string namespace):IEmitter

Specifies a specific namespace that you want to emit to.

 IEmitter io = new Emitter(new EmitterOptions
 {
    Host = "localhost",
    Port = 6379
 });
    
 io.Of("/nsp").In("room-name").Emit("news","Hello from c# emitter");

License

MIT

Open Source Projects in use

socket.io-csharp-emitter's People

Contributors

bugthesystem avatar lpshane avatar ponsifiax avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

socket.io-csharp-emitter's Issues

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.