Pregunta

I'm porting Java code that uses the concurrent Guava library to C#. I came across many uses of SettableFuture and ListenableFuture.

Is there a C# class that comes very close to this pattern? Or do there exist C# wrappers for it? Because I want to change the flow of the code as less as possible.

¿Fue útil?

Solución

SettableFuture appears to be analogous to a TaskCompletionSource and its Task. Task already has ContinueWith which should give you the functionality of ListenableFuture.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top