Effect CommunityEC
Effect Communityβ€’5d agoβ€’
4 replies
Kedi

Adding Retry Logic to `E.fn`

const downloadFile = E.fn("downloadFile")(function* (file: FIleData){// download logic
}).pipe(E.retry({ times: 3 }));

how to add retry logic to E.fn?
Was this page helpful?