GithubHelp home page GithubHelp logo

Comments (4)

kamilmysliwiec avatar kamilmysliwiec commented on July 27, 2024 2

Would you like to create a PR for this issue?

from event-emitter.

benkroeger avatar benkroeger commented on July 27, 2024 1

You can not use the OnEvent decorator to subscribe to multiple events at once (except for when you use wildcards.
The event argument from OnEvent decorator is passed to the EventEmitter2.on() method - which treats the event argument of type Array as a namespaced event (i.e. 'foo.bar' equals ['foo', 'bar']) or in this case (@Kopleman ) ['some.event1', 'some.event2'] would subscribe to the event 'some.event1.some.event2' - which I assume would never be emitted.

Note: For using wildcards or namespaces, you must activate the wildcard option on the module.

Namespaces with Wildcards: To use namespaces/wildcards, pass the wildcard option into the EventEmitter constructor. When namespaces/wildcards are enabled, events can either be strings (foo.bar) separated by a delimiter or arrays (['foo', 'bar']). The delimiter is also configurable as a constructor option.

from event-emitter.

micalevisk avatar micalevisk commented on July 27, 2024

if we change from
@OnEvent(['some.event1', 'some.event2']) to
@OnEvent(['some.event1'])
it will work. Should be easy to fix

from event-emitter.

inceenes10 avatar inceenes10 commented on July 27, 2024

In the example below doesn't work

@Injectable()
export class Indexer {

    @OnEvent("auction.created")
    created() {
        console.log("auction created 2")
    }
}

but this work as expected in my nest app

@Injectable()
export class Indexer {


    constructor(
        private readonly auctionContract: AuctionContract,
        private readonly eventEmitter: EventEmitter2
    ) {
        this.eventEmitter.addListener("auction.created", this.created.bind(this))
    }

    created() {
        console.log("auction created 2")
    }
}

I don't know why the first approach is not working. But I'd like to create a PR for this. I don't know where to start.

from event-emitter.

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.