Channels Channel A channel is a synchronization primitive. Example: let channel = Channel<Int>() let coroutine = try Coroutine { try channel.send(42, deadline: 1.second.fromNow()) } let theAnswer = try channel.receive(deadline: 1.second.fromNow()) See more Declaration Swift public final class Channel<Type> © 2017 Zewo. All rights reserved. (Last updated: 2017-05-20) Generated by jazzy ♪♫ v0.8.1, a Realm project.