Single退订的正确方法是什么

What's the correct way to unsubscribe from Single

稍等片刻我想做点什么:

public void notifyMe() {
Single
       .timer(500, TimeUnit.MILLISECONDS)
       .subscribeOn(Schedulers.io())
       .subscribe(ignore -> service.notifyMe()));
}

现在我有一个警告:"The result of subscribe is not used"。 我该如何解决?

单身只会打电话一次。调用任一方法后,Single 终止并且对其的订阅结束。

Link可参考