0

I has an restful API which uses an odata request to query data front the database. I'm looking to start to swapping out domain logic with akka.net but I don't want to change the clients. Is there any way I can hook the ask pattern to use IQueryable?

Andrew Davis
  • 460
  • 3
  • 17

1 Answers1

0

As I've described in comment, this feature will be available as part of reactive streams in Akka.Streams plugin in the future. It'll allow to create dynamic push-pull based, buffered data flows.

However you can implement progressive IEnumerable of responses by yourself. I've created a primitive snippet, that may be used along with LINQ.

Bartosz Sypytkowski
  • 7,463
  • 19
  • 36