|
|
|
|
|
by yummyfajitas
3589 days ago
|
|
The problem is that by doing this, you have made an operation that should be instantaneous - readLineFuture: () => Future[Line] - into something that now has built in lag. I.e. you've pulled the side effects (blocking) from the future to the present. |
|