I have a class,
public class Test
{
public int Calc();
}
which requires all calls to Calc to be performed on the same thread as the one on which Test was created. I need to create Test once (expensive operation) and call Calc multiple times.
I'd like to have a wrapper that will let me call Calc asynchronousely:
public class TestWrapper
{
private Test _test;
public IObservable<int> Calc();
}
One way to do it would be to create a BackgroundWorker or a Thread and use it as a guarantee that all operations on Test are on the same thread. For simplicity, we can assume that all calls to Calc() will be executed sequentially, so no need to worry about queueing.
Is there a more elegant RX way to do it?