GithubHelp home page GithubHelp logo

Comments (10)

kamilmysliwiec avatar kamilmysliwiec commented on April 27, 2024 1

Since 3.0.0 constructor shouldn't break RPC client creation. You can inject dependencies through constructor, but interact with them after module init event.

from nest.

Yiin avatar Yiin commented on April 27, 2024

Service that injects a controller sounds so wrong.

from nest.

artaommahe avatar artaommahe commented on April 27, 2024

Service that injects a controller sounds so wrong

service that cant use rpc requests sound wrong too :) controllers are just transport handling buffer and inability to call rpc from main app part - services - looks strange.
Also we have gateways that are same as controllers but for websocket and they can be injected to services 😶

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 27, 2024

Hi @artaommahe,

try to remove method with @RequestMapping from controller and in controller constructor call this.client.send() after some timeout, this.client will be null

It is quite interesting. Do you still have this issue after latest update?
By the way, it should be possible to create @Client() in both controllers and components.

from nest.

artaommahe avatar artaommahe commented on April 27, 2024

@kamilmysliwiec here it is
https://github.com/artaommahe/nest-63

yarn
yarn run start

after 3 seconds

service client null
controller client null

from nest.

artaommahe avatar artaommahe commented on April 27, 2024

@kamilmysliwiec i checked more - issue due to constructor() {} defined in both controller and service. So this will not work with explicitly defined constructor like so

  @Client({ transport: Transport.TCP, port: 65441 })
  private client: ClientProxy;

  constructor() {

    setTimeout(() => console.log('service client', this.client), 3000);
  }

In same repo remove service constructor, inject service into controller and call service method from controller and it works fine.

export class RpcClientController {

  constructor(private rpcClientService: RpcClientService) {

    setTimeout(() => console.log('controller client', this.rpcClientService.get()), 3000);
  }

Hope this will work with defined constructor in future.

from nest.

kamilmysliwiec avatar kamilmysliwiec commented on April 27, 2024

Hi @artaommahe,
Let's use OnModuleInit (https://docs.nestjs.com/lifecycle-events.html) lifecycle event instead of constructor.

from nest.

artaommahe avatar artaommahe commented on April 27, 2024

@kamilmysliwiec but how can i inject smth in service if using constructor breaks RPC client creation?)

from nest.

artaommahe avatar artaommahe commented on April 27, 2024

@kamilmysliwiec moved console.log check to onModuleInit and it works, thx

from nest.

lock avatar lock commented on April 27, 2024

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

from nest.

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.