One issue I had with a custom context was that the...
# getting-started
m
One issue I had with a custom context was that the kotlin built-in delay function fails silently if if the continuation interceptor doesn't implement Delay.
v
Could you elaborate on that? Maybe in #coroutines
m
I mean the delay method in Delay.kt

http://i.imgur.com/chGCZUS.png

If the ContinuationInterceptor property of the context doesn't implement Delay, it just doesn't continue and doesn't say a word.
v
Hm, does it fail silently? Because the code looks like it does something
m
Well it cancels the task and the continuation doesn't happen.