Playback throws NotImplementedException when using Delay() #45
Labels
Comments
|
AFAIK there is no code in Tx that throws NotImplementedException. @CodeTao, which version of Tx and Rx are you using? |
|
The sample code above demonstrates the error and the NotImplementedException is thrown in the TimeSegmentScheduler as shown in the source code below. private sealed class TimeSegmentScheduler : IScheduler
{
...
public DateTimeOffset Now
{
get
{
if (!_running)
{
throw new NotImplementedException();
}
return _historical.Clock;
}
...
} |
|
Seems like the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Playback.GetObservable() throws a NotImplementedException when the Delay() operator is used.
The text was updated successfully, but these errors were encountered: