Contents

Publishers.MakeConnectable

A publisher that provides explicit connectability to another publisher.

Declaration

struct MakeConnectable<Upstream> where Upstream : Publisher

Mentioned in

Overview

Publishers.MakeConnectable is a ConnectablePublisher, which allows you to perform configuration before publishing any elements. Call connect() on this publisher when you want to attach to its upstream publisher and start producing elements.

Use the makeConnectable() operator to wrap an upstream publisher with an instance of this publisher.

Topics

Creating a connectable publisher

Declaring supporting types

See Also

Using explicit publisher connections