Giter Club home page Giter Club logo

otto's Introduction

Otto

A very simple in-memory pub/sub system for Golang.

How to use

package main

import (
    "fmt"

    "github.com/laraantunes/otto"
)

// You must define one (or as many as you need) 
// subscribers to sign in on a topic. A Subscriber
// is a struct that implements otto.Subscriber interface,
// implementing the method Handle(payload interface{}) 
type MySubscriber struct{}

// Any value may be passed to Handle() method
func (m *MySubscriber)Handle(payload interface{}) {
    fmt.PrintLn(payload.(string))
}


func main() {
    // First of all, you must register the topics that can be published:
    otto.RegisterTopics("topic1", "topic2") // You may register as much topics as you need

    // Then, you must register your subscribers:
    s1 := &MySubscriber{}
    s2 := &MySubscriber{}
    s3 := &MySubscriber{}
    otto.RegisterSubscribers("topic1", s1, s2, s3)

    // Finally, you may publish to a topic:
    otto.Publish("topic1", "my message")
}

Using and Contributing

You may use this library as you wish and, if you find any bug or have any suggestion, please feel free to create a pull request =)

otto's People

Contributors

laraantunes avatar

Stargazers

 avatar

Watchers

 avatar

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.