dzaitsev
10/18/2016, 8:37 PMnew ActionSubscriber(onNext, onError, Actions.empty());
but it doesn't work in Kotlin:
ActionSubscriber(onNext, onError, Actions.empty())
It cannot infer the type of T0 which is actually Action0 and doesn't work even if I specify it explicitly.
Any solutions/workarounds?