Giter Site home page Giter Site logo

Comments (5)

fwoelffel avatar fwoelffel commented on May 7, 2024 2

Hi @CodebyOmar
I've worked on this today and came up with a working implementation of the requested feature. You're right, this should've been done from the beginning.

However, things do not work exactly as suggested by you code sample but rather like this:

BullModule.forRootAsync([
  {
    name: 'settlement',
    imports: [PayModule],
    inject: [PayService],
    useFactory: (payService: PayService) => ({
      options: {
        redis: {
          port: 6379
        }
      }
    })
  },
  {
    name: 'collation',
    imports: [PayModule],
    inject: [PayService],
    useFactory: (payService: PayService) => ({
      options: {
        redis: {
          port: 6379
        }
      }
    })
  },
])

I'll most probably release this tomorrow. I'd like to add some more tests before. Feel free to share your feedback about this implementation since it does not exactly match your expectations.

from bull.

fwoelffel avatar fwoelffel commented on May 7, 2024

Might be related to #12

from bull.

fwoelffel avatar fwoelffel commented on May 7, 2024

Hi @CodebyOmar could you provide some information on the observed behavior?

from bull.

CodebyOmar avatar CodebyOmar commented on May 7, 2024

I went through the code;

export interface BullModuleOptions {
  name?: string;
  options?: Bull.QueueOptions;
  processors?: BullQueueProcessor[];
}

export interface BullOptionsFactory {
  createBullOptions(): Promise<BullModuleOptions> | BullModuleOptions;
}

export interface BullModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
  name?: string;
  useExisting?: Type<BullOptionsFactory>;
  useClass?: Type<BullOptionsFactory>;
  useFactory?: (...args: any[]) => Promise<BullModuleOptions> | BullModuleOptions;
  inject?: any[];
}

Notice: The function createBullOptions in the interface BullOptionsFactory returns a promise of BullModuleOptions or BullModuleOptions but an array of BullModuleOptions is not specified.

from bull.

CodebyOmar avatar CodebyOmar commented on May 7, 2024

Has anyone found a solution to this? Its critical to our project right now please.

from bull.

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.