subscribe method
Subscribes to the given handler
.
This finalizes the builder and applies all the steps before subscribing.
Implementation
@override
EventSubscription subscribe(EventHandler<TOutput> handler) {
return parent.subscribe(createHandler(handler));
}