質問

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.

役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top