• We can use () to represent Void

    Use void when represent observer when you just need tell observer that certain things happens but no detail should be provided

    let o = PublishSubject<Void>()
    o.onNext(())
    o.subscribe()