The Queue service provides the ability to perform background processing without having to manage your own queue servers. It works great for serverless implementations that need to offload short-lived processes to prevent slow-running transactions for the client application.
Use the queue service to notify your target URL to perform tasks such as:
To create a Queue service instance perform the following steps:
A hyper queue can sign the job it sends to your queue's target URL by including a signature in each job's X-HYPER-SIGNATURE header. This allows the worker to verify that the job was sent by its corresponding hyper queue, not by a third party, and is unaltered. A hyper queue will generate an X-HYPER-SIGNATURE, if and only if you provide a secret when creating the queue. See Queue API