Giter VIP home page Giter VIP logo

Comments (3)

ollex avatar ollex commented on April 25, 2024

Hm - I looked up the Stream function which calls Flush() on the contexts' Writer when step returns true.. the latter should be the case in my stream implementation, so I am not sure why without calling Flush() on the writer within my stream func ... does not work.This is what I do, so basically I have an extra c.Writer.Flush() when a msg is coming out of the clientChannel, without that the events are not streamed to the clients:
c.Stream(func(w io.Writer) bool { if msg, ok := <-clientChan; ok { if strings.Contains(msg, "player|"+un) || strings.Contains(msg, "player|all") { // analyze message, to customize event type, makes frontend easier! var d map[string]interface{} var t string err := json.Unmarshal([]byte(msg), &d) if err != nil { fmt.Println(err.Error()) c.SSEvent("message", msg) } else { if v, ok := d["type"]; ok { t = v.(string) } else { t = "message" } c.SSEvent(t, msg) } c.Writer.Flush() } else { fmt.Println("Not for this player !" + msg) } return true } return false })

from examples.

ollex avatar ollex commented on April 25, 2024

also not sure why the code is so badly formatted in my last comment - used the code formatter option...

from examples.

ollex avatar ollex commented on April 25, 2024

...entirely my fault - found that I had an c.SSEvent at the wrong place - in the above Stream implementation I can leave out c.Writer.Flush() and events are send out just fine.

from examples.

Related Issues (20)

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.