-
Notifications
You must be signed in to change notification settings - Fork 534
/
Copy pathMonoPublisher.java
21 lines (18 loc) · 994 Bytes
/
MonoPublisher.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/************************************************************************
* Licensed under Public Domain (CC0) *
* *
* To the extent possible under law, the person who associated CC0 with *
* this code has waived all copyright and related or neighboring *
* rights to this code. *
* *
* You should have received a copy of the CC0 legalcode along with this *
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
************************************************************************/
package org.reactivestreams;
/**
* A {@link MonoPublisher} is a specialization of {@link Publisher} that emits at most one element.
*
* @param <T> the type of element signaled
*/
public interface MonoPublisher<T> extends Publisher<T> {
}