0Pricing
Swift Academy · Lesson

Publishers and Subscribers

The Publisher/Subscriber contract, sink and assign built-in subscribers.

Publishers and Subscribers is a free Swift Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Swift Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

Welcome

Combine is Apple's reactive framework. At its core are Publishers (produce values) and Subscribers (consume them).

Publisher Protocol

A `Publisher` emits values over time and eventually completes or fails: ```swift publisher .sink { print("Received: \($0)") } ``` The `Output` type is the value type; `Failure` is the error type.

Subscriber: sink

```swift let nums = [1,2,3].publisher let cancel = nums.sink { print($0) } // 1, 2, 3 ```

Subscriber: assign

```swift class ViewModel { @Published var status = "" } let vm = ViewModel() statusPublisher .assign(to: &vm.$status) ```

AnyCancellable

Every subscription returns `AnyCancellable`. Store it to keep the subscription alive: ```swift var cancellables = Set() pub.sink { print($0) }.store(in: &cancellables) ```

Just Publisher

```swift Just(42).sink { print($0) } // emits once then completes ```

Notification Publisher

```swift NotificationCenter.default .publisher(for: UIApplication.didBecomeActiveNotification) .sink { _ in print("Active!") } .store(in: &cancellables) ```

Timer Publisher

```swift Timer.publish(every: 1, on: .main, in: .common) .autoconnect() .sink { date in print(date) } .store(in: &cancellables) ```

Completion Events

```swift pub.sink( receiveCompletion: { completion in switch completion { case .finished: print("Done") case .failure(let e): print("Error: \(e)") } }, receiveValue: { print($0) } ) ```

Backpressure

Combine supports backpressure — subscribers can request specific numbers of values. The `.unlimited` demand is the default for `sink`.

Quick Check

What type must you store to keep a Combine subscription alive?

Recap

Key takeaways: • Publishers emit values over time; Subscribers receive them • `sink` receives values and completion; `assign` binds to a property • Store `AnyCancellable` to keep subscriptions alive • Built-in publishers: `Just`, `Timer.publish`, NotificationCenter Next: Operators.

Frequently asked questions

Is the “Publishers and Subscribers” lesson free?

Yes — the full text of “Publishers and Subscribers” is free to read here on the web, and the Swift Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Swift Academy course, upgrade to CoddyKit PRO.

What will I learn in “Publishers and Subscribers”?

The Publisher/Subscriber contract, sink and assign built-in subscribers. You practise Swift Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Swift Academy?

No prior experience is required. Swift Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “Publishers and Subscribers” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Swift Academy lesson?

Yes. Every Swift Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Publishers and Subscribers
  2. Operators: map, filter, combineLatest
  3. PassthroughSubject and CurrentValueSubject
  4. Networking with Combine and URLSession
← Back to Swift Academy