T - the CoreSubscriber data typepublic interface CorePublisher<T> extends Publisher<T>
CoreSubscriber aware publisher.| Modifier and Type | Method and Description | 
|---|---|
| void | subscribe(CoreSubscriber<? super T> subscriber)An internal  Publisher.subscribe(Subscriber)that will bypassHooks.onLastOperator(Function)pointcut. | 
void subscribe(CoreSubscriber<? super T> subscriber)
Publisher.subscribe(Subscriber) that will bypass
 Hooks.onLastOperator(Function) pointcut.
 
 In addition to behave as expected by Publisher.subscribe(Subscriber)
 in a controlled manner, it supports direct subscribe-time Context passing.
subscriber - the Subscriber interested into the published sequencePublisher.subscribe(Subscriber)