-
Notifications
You must be signed in to change notification settings - Fork 2
queue.Interface.QueueServiceContract
Sclable CI edited this page Oct 7, 2024
·
7 revisions
@sclable/nestjs-libs / queue / QueueServiceContract
addConsumer<
PayloadType
>(queueName
,consumer
):Promise
<void
>
• PayloadType
• queueName: string
• consumer
Promise
<void
>
packages/queue/src/contracts/queue-service.contract.ts:5
sendMessage<
PayloadType
>(queueName
,payload
):Promise
<void
>
• PayloadType
• queueName: string
• payload: PayloadType
Promise
<void
>