Realtime updates - GetStream/stream-swift GitHub Wiki

let notificationFeed = Client.shared.flatFeed(feedSlug: "notification")
var subscription = notificationFeed?.subscribe(typeOf: Activity.self) { result in /* ... */ }
// Keep `subscription` object until you need realtime updates and then to unsubscribe set it to nil:
subscription = nil