Index: 3rdParty_sources/reactive-streams/org/reactivestreams/Subscriber.java =================================================================== diff -u -r2d6722d97aad801e2f7db229945ae3dab6ec8576 -rc4ce08dc0aae7d9da822088a3d5710484f6b0402 --- 3rdParty_sources/reactive-streams/org/reactivestreams/Subscriber.java (.../Subscriber.java) (revision 2d6722d97aad801e2f7db229945ae3dab6ec8576) +++ 3rdParty_sources/reactive-streams/org/reactivestreams/Subscriber.java (.../Subscriber.java) (revision c4ce08dc0aae7d9da822088a3d5710484f6b0402) @@ -1,13 +1,6 @@ -/************************************************************************ - * 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 .* - ************************************************************************/ +/*************************************************** + * Licensed under MIT No Attribution (SPDX: MIT-0) * + ***************************************************/ package org.reactivestreams; @@ -24,9 +17,10 @@ *

* Demand can be signaled via {@link Subscription#request(long)} whenever the {@link Subscriber} instance is capable of handling more. * - * @param the type of element signaled. + * @param the type of element signaled */ public interface Subscriber { + /** * Invoked after calling {@link Publisher#subscribe(Subscriber)}. *

@@ -36,8 +30,7 @@ *

* The {@link Publisher} will send notifications only in response to {@link Subscription#request(long)}. * - * @param s - * {@link Subscription} that allows requesting data via {@link Subscription#request(long)} + * @param s the {@link Subscription} that allows requesting data via {@link Subscription#request(long)} */ public void onSubscribe(Subscription s);