Index: 3rdParty_sources/reactive-streams/org/reactivestreams/Publisher.java =================================================================== diff -u -r2d6722d97aad801e2f7db229945ae3dab6ec8576 -rc4ce08dc0aae7d9da822088a3d5710484f6b0402 --- 3rdParty_sources/reactive-streams/org/reactivestreams/Publisher.java (.../Publisher.java) (revision 2d6722d97aad801e2f7db229945ae3dab6ec8576) +++ 3rdParty_sources/reactive-streams/org/reactivestreams/Publisher.java (.../Publisher.java) (revision c4ce08dc0aae7d9da822088a3d5710484f6b0402) @@ -1,24 +1,17 @@ -/************************************************************************ - * 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; /** * A {@link Publisher} is a provider of a potentially unbounded number of sequenced elements, publishing them according to * the demand received from its {@link Subscriber}(s). *

- * A {@link Publisher} can serve multiple {@link Subscriber}s subscribed {@link #subscribe(Subscriber)} dynamically + * A {@link Publisher} can serve multiple {@link Subscriber}s subscribed {@link Publisher#subscribe(Subscriber)} dynamically * at various points in time. * - * @param the type of element signaled. + * @param the type of element signaled */ public interface Publisher { @@ -32,7 +25,7 @@ * A {@link Subscriber} should only subscribe once to a single {@link Publisher}. *

* If the {@link Publisher} rejects the subscription attempt or otherwise fails it will - * signal the error via {@link Subscriber#onError}. + * signal the error via {@link Subscriber#onError(Throwable)}. * * @param s the {@link Subscriber} that will consume signals from this {@link Publisher} */