문제

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