doOnAfterSuccess

fun <T> Single<T>.doOnAfterSuccess(action: (T) -> Unit): Single<T>

Calls the action with the emitted value when the Single signals onSuccess. The action is called after the observer is called.