1

I want to write a Dart server that reads from a Firebase queue and sends emails.

What is not clear to me is how to write a server that listens for something other than HTTP requests, in my case a Firebase queue like e.g. this project .

kpg
  • 7,644
  • 6
  • 34
  • 67

1 Answers1

1

It does not "listen" to HTTP connections in the original client <-> server sense. It takes a job from the queue and executes it, then returns back the result and goes on with the next job.

You'd need a Dart wrapper for the Firebase queue implementation.

Robert de W
  • 316
  • 8
  • 24