GithubHelp home page GithubHelp logo

Comments (3)

darrachequesne avatar darrachequesne commented on May 19, 2024

Hi! That's weird, the children attribute should be initialized with the readonly tag:

constructor(parentNsp: any, private readonly children: Set<Namespace>) {
super(parentNsp);
}

In dist/parent-namespace.js:

class ParentBroadcastAdapter extends socket_io_adapter_1.Adapter {
    constructor(parentNsp, children) {
        super(parentNsp);
        this.children = children;
    }
    broadcast(packet, opts) {
        this.children.forEach((nsp) => {
            nsp.adapter.broadcast(packet, opts);
        });
    }
}

So I'm not sure how this.children can be undefined there... Thoughts?

from socket.io.

peterjuras avatar peterjuras commented on May 19, 2024

Hi,
I'm experiencing the same issue. I'm using https://github.com/socketio/socket.io-redis-streams-adapter maybe that is the source of the issue?

from socket.io.

gkt5015 avatar gkt5015 commented on May 19, 2024

Hi, is there an update on this?

I believe the issue here is that this.children isn't declared yet when super is called in the ParentNamespace class. The constructor of Namespace will call _initAdapter of the subclass with the undefined value. Prior to the change, this.children was enclosed in the function so it wasn't an issue.

Perhaps one way to change this would be:

class ParentBroadcastAdapter extends socket_io_adapter_1.Adapter {
    constructor(parentNsp) {
        super(parentNsp);
        this.parentNsp = parentNsp;
    }
    broadcast(packet, opts) {
        this.parentNsp.children.forEach((nsp) => {
            nsp.adapter.broadcast(packet, opts);
        });
    }
}

from socket.io.

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.