fsprojects / Amazon.SimpleWorkflow.Extensions

Extensions to AmazonSDK's SimpleWorkflow capabilities to make it more intuitive to use
http://fsprojects.github.io/Amazon.SimpleWorkflow.Extensions
MIT License
16 stars 10 forks source link

Use lazy list for converting AWSSDK's HistoryEvent to internal HistoryEvent type and fetching more events using TaskToken #2

Closed theburningmonk closed 11 years ago

theburningmonk commented 11 years ago

use a lazy list (probably from the FSharpX project) so that the HistoryEvent type from the AWSSDK is only converted on demand to the internal HistoryEvent type and when the list of fetched events are exhausted and there's an active TaskToken it should fetch more events using the token.

theburningmonk commented 11 years ago

ended up using the standard sequence, but works just as well