0

I'm setting up a service that will email a user the data generated by a Cubejs query. I'd like to have Cubejs notify the email-sending service (perhaps through SNS) that new data is available for sending: Is this possible? Are there better options for allowing asynchronous access to query results?

Ken White
  • 123,280
  • 14
  • 225
  • 444
Bananin
  • 69
  • 8

1 Answers1

0

Perhaps you could look into WebSocketTransport, part of the real-time data fetch mechanism?

J c
  • 1