options.ts 405 B

12345678910111213
  1. export interface PubSubOptions {
  2. /**
  3. * @description
  4. * Number of jobs that can be inflight at the same time.
  5. */
  6. concurrency?: number;
  7. /**
  8. * @description
  9. * This is the mapping of Vendure queue names to PubSub Topics and Subscriptions
  10. * For each queue a topic and subscription is required to exist.
  11. */
  12. queueNamePubSubPair?: Map<string, [string, string]>;
  13. }