File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/java/rx/subjects Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 32
32
* amount. In this case, the buffered values are no longer retained. If the Subscriber
33
33
* requests a limited amount, queueing is involved and only those values are retained which
34
34
* weren't requested by the Subscriber at that time.
35
- *
35
+ * <p>
36
+ * <img width="640" height="370" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/UnicastSubject.v1.png" alt="">
36
37
* @param <T> the input and output value type
37
38
*/
38
39
@ Experimental
@@ -68,6 +69,7 @@ public static <T> UnicastSubject<T> create(int capacityHint) {
68
69
* Constructs an empty UnicastSubject instance with the default capacity hint of 16 elements.
69
70
*
70
71
* @param delayError deliver pending next events before error.
72
+ * @param <T> the input and output value type
71
73
* @return the created UnicastSubject instance
72
74
*/
73
75
public static <T > UnicastSubject <T > create (boolean delayError ) {
You can’t perform that action at this time.
0 commit comments