- Type Parameters:
T
- the type of the value emitted by the publisher to transformU
- the type of the value emitted by the resulting publisher
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A publisher pipe is used within a template to transform a publisher before applying templates to the emitted elements.
- Since:
- 1.2
- Author:
- Jeremy Kuhn
-
Method Summary
Modifier and TypeMethodDescriptiondefault <V> PublisherPipe
<T, V> and
(PublisherPipe<U, V> after) Chains the specified publisher pipe after this pipe.
-
Method Details
-
and
Chains the specified publisher pipe after this pipe.
- Type Parameters:
V
- the type of the value emitted by the resulting publisher- Parameters:
after
- the publisher pipe to chain after this pipe- Returns:
- A publisher pipe which first invokes this pipe and then the after pipe
-